Bläddra i källkod

云照护修改

LAPTOP-KB9HII50\70708 1 år sedan
förälder
incheckning
7fb9441747

+ 12 - 1
common/common-entity/src/main/java/com/yihu/jw/entity/base/servicePackage/ServicePackageItemDO.java

@ -39,7 +39,9 @@ public class ServicePackageItemDO extends UuidIdentityEntity implements java.io.
    private String templateCode;//模板的code
    private String templateType;//模板的类型
    private String subItemId;//数据库不存在的字段
    //数据库不存在的字段
    private String subItemId;
    private String serverCount;//服务次数
    @Column(name = "service_package_item_id")
    public String getServicePackageItemId() {
@ -220,4 +222,13 @@ public class ServicePackageItemDO extends UuidIdentityEntity implements java.io.
    public void setTopicItem(String topicItem) {
        this.topicItem = topicItem;
    }
    @Transient
    public String getServerCount() {
        return serverCount;
    }
    public void setServerCount(String serverCount) {
        this.serverCount = serverCount;
    }
}

+ 125 - 0
common/common-entity/src/main/java/com/yihu/jw/entity/followup/FollowupTemplate.java

@ -0,0 +1,125 @@
package com.yihu.jw.entity.followup;
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
/**
 * 随访模板表
 */
@Entity
@Table(name = "base_followup_template")
public class FollowupTemplate extends UuidIdentityEntityWithOperator {
	@Column(name = "template_name")
	private String templateName;
	@Column(name = "followup_statrt_time_type")
	private String followupStatrtTimeType;
	@Column(name = "followup_count")
	private String followupCount;
	@Column(name = "description")
	private String description;
	@Column(name = "template_detail_json")
	private String templateDetailJson;
	@Column(name = "status")
	private String status;
	@Column(name = "leased_code")
	private String leasedCode;
	@Column(name = "leased_name")
	private String leasedName;
	@Column(name = "org_code")
	private String orgCode;
	@Column(name = "org_name")
	private String orgName;
	public String getTemplateName() {
		return templateName;
	}
	public void setTemplateName(String templateName) {
		this.templateName = templateName;
	}
	public String getFollowupStatrtTimeType() {
		return followupStatrtTimeType;
	}
	public void setFollowupStatrtTimeType(String followupStatrtTimeType) {
		this.followupStatrtTimeType = followupStatrtTimeType;
	}
	public String getFollowupCount() {
		return followupCount;
	}
	public void setFollowupCount(String followupCount) {
		this.followupCount = followupCount;
	}
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
	public String getTemplateDetailJson() {
		return templateDetailJson;
	}
	public void setTemplateDetailJson(String templateDetailJson) {
		this.templateDetailJson = templateDetailJson;
	}
	public String getStatus() {
		return status;
	}
	public void setStatus(String status) {
		this.status = status;
	}
	public String getLeasedCode() {
		return leasedCode;
	}
	public void setLeasedCode(String leasedCode) {
		this.leasedCode = leasedCode;
	}
	public String getLeasedName() {
		return leasedName;
	}
	public void setLeasedName(String leasedName) {
		this.leasedName = leasedName;
	}
	public String getOrgCode() {
		return orgCode;
	}
	public void setOrgCode(String orgCode) {
		this.orgCode = orgCode;
	}
	public String getOrgName() {
		return orgName;
	}
	public void setOrgName(String orgName) {
		this.orgName = orgName;
	}
}