mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-13 03:39:55 +08:00
update 添加字段 是否对外展示
This commit is contained in:
@@ -98,75 +98,17 @@ public class PileBillingTemplate extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private String memberFlag;
|
private String memberFlag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 对外展示标识(0-不展示; 1-展示)
|
||||||
|
*/
|
||||||
|
private String displayFlag;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 发布时间
|
* 发布时间
|
||||||
*/
|
*/
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date publishTime;
|
private Date publishTime;
|
||||||
|
|
||||||
// public String getPublicFlag() {
|
|
||||||
// return publicFlag;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public void setPublicFlag(String publicFlag) {
|
|
||||||
// this.publicFlag = publicFlag;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public void setId(Long id) {
|
|
||||||
// this.id = id;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public Long getId() {
|
|
||||||
// return id;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public void setTemplateCode(String templateCode) {
|
|
||||||
// this.templateCode = templateCode;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public String getTemplateCode() {
|
|
||||||
// return templateCode;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public void setName(String name) {
|
|
||||||
// this.name = name;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public String getName() {
|
|
||||||
// return name;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public void setType(String type) {
|
|
||||||
// this.type = type;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public String getType() {
|
|
||||||
// return type;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public void setStationId(Long stationId) {
|
|
||||||
// this.stationId = stationId;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public Long getStationId() {
|
|
||||||
// return stationId;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public void setDelFlag(String delFlag) {
|
|
||||||
// this.delFlag = delFlag;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public String getDelFlag() {
|
|
||||||
// return delFlag;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public List<PileBillingDetail> getPileBillingDetailList() {
|
|
||||||
// return pileBillingDetailList;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public void setPileBillingDetailList(List<PileBillingDetail> pileBillingDetailList) {
|
|
||||||
// this.pileBillingDetailList = pileBillingDetailList;
|
|
||||||
// }
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
|
|||||||
@@ -16,7 +16,8 @@
|
|||||||
<result property="occupyFee" column="occupy_fee"/>
|
<result property="occupyFee" column="occupy_fee"/>
|
||||||
<result property="maxOccupyFee" column="max_occupy_fee"/>
|
<result property="maxOccupyFee" column="max_occupy_fee"/>
|
||||||
<result property="publicFlag" column="public_flag"/>
|
<result property="publicFlag" column="public_flag"/>
|
||||||
<result property="memberFlag" column="memberFlag"/>
|
<result property="memberFlag" column="member_flag"/>
|
||||||
|
<result property="displayFlag" column="display_flag"/>
|
||||||
<result property="createBy" column="create_by"/>
|
<result property="createBy" column="create_by"/>
|
||||||
<result property="createTime" column="create_time"/>
|
<result property="createTime" column="create_time"/>
|
||||||
<result property="updateBy" column="update_by"/>
|
<result property="updateBy" column="update_by"/>
|
||||||
@@ -27,7 +28,7 @@
|
|||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
<!--@mbg.generated PileBillingTemplate-->
|
<!--@mbg.generated PileBillingTemplate-->
|
||||||
id, template_code, name, status, template_remark, template_desc, type, station_id, free_time, occupy_fee, max_occupy_fee, public_flag,
|
id, template_code, name, status, template_remark, template_desc, type, station_id, free_time, occupy_fee, max_occupy_fee, public_flag,
|
||||||
member_flag, create_time, update_by, update_time, del_flag
|
member_flag, display_flag, create_by, create_time, update_by, update_time, del_flag
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
<resultMap type="com.jsowell.pile.domain.PileBillingDetail" id="PileBillingDetailResult">
|
<resultMap type="com.jsowell.pile.domain.PileBillingDetail" id="PileBillingDetailResult">
|
||||||
|
|||||||
Reference in New Issue
Block a user