派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
src/main/java/com/qxueyou/scc/sms/model/SmsConfig.java
@@ -11,7 +11,7 @@
import org.hibernate.annotations.GenericGenerator;
/**
 * 短信表配置 实体
 * 短信表配置 实体
 * @author ody.yuan
 *
 */
@@ -24,26 +24,26 @@
    */
   private static final long serialVersionUID = 1L;
   
   /**  主键 */
   /**  主键 */
   @Id
   @GeneratedValue(generator = "hibernate-uuid")
   @GenericGenerator(name = "hibernate-uuid", strategy = "uuid")
   @Column(name="CONFIG_ID", unique=true, nullable=false, length=32)
   private String configId;
   
   /**  模块:目前 激活  */
   /**  模块:目前 激活  */
   @Column(name="MODULE", length=255)
   private String module;
   
   /**  最上层org_id  */
   /**  最上层org_id  */
   @Column(name="TOP_ORG_ID", length=255)
   private String topOrgId;
   
   /**  开关  */
   /**  开关  */
   @Column(name="SWITCH_FLAG", length=255)
   private Boolean switchFlag;
   
   public static final String  REG_ACTIVITY_MODULE = "REG_ACTIVITY"; // 激活
   public static final String  REG_ACTIVITY_MODULE = "REG_ACTIVITY"; // 激活
   /**
    * @return the configId