提交 e47aef33 编写于 作者: ibizdev's avatar ibizdev

Mosher 部署微服务接口 [后台服务,接口示例]

上级 819a337e
......@@ -37,6 +37,11 @@
git clone -b master $para2 demosys/
export NODE_OPTIONS=--max-old-space-size=4096
cd demosys/
mvn clean package -Pdemoapi
cd demo-provider/demo-provider-demoapi
mvn -Pdemoapi docker:build
mvn -Pdemoapi docker:push
docker -H $para1 stack deploy --compose-file=src/main/docker/demo-provider-demoapi.yaml iBizDemo --with-registry-auth
</command>
</hudson.tasks.Shell>
</builders>
......
......@@ -30,13 +30,13 @@ import java.util.List;
@SpringBootApplication(exclude = {
org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration.class,
})
public class WebApplication extends WebMvcConfigurerAdapter{
public class WebApplication extends WebMvcConfigurerAdapter {
@Autowired
SearchContextHandlerMethodArgumentResolver resolver;
public static void main(String[] args) {
SpringApplication.run(WebApplication.class,args);
SpringApplication.run(WebApplication.class, args);
}
@Override
......
......@@ -112,10 +112,10 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
"/**/svg/**",
"/"
).permitAll()
//放行登录请求
.antMatchers( HttpMethod.POST,"/"+loginPath).permitAll()
//放行注销请求
.antMatchers( HttpMethod.GET,"/"+logoutPath).permitAll()
// 放行登录请求
.antMatchers( HttpMethod.POST, "/"+loginPath).permitAll()
// 放行注销请求
.antMatchers( HttpMethod.GET, "/"+logoutPath).permitAll()
// 文件操作
.antMatchers("/"+downloadpath+"/**").permitAll()
.antMatchers("/"+uploadpath).permitAll()
......
......@@ -25,8 +25,8 @@ import org.springframework.beans.factory.annotation.Autowired;
@SpringBootApplication(exclude = {
})
@ComponentScan(basePackages = {"cn.ibizlab"}
// ,excludeFilters={
// @ComponentScan.Filter(type= org.springframework.context.annotation.FilterType.REGEX,pattern="cn.ibizlab.xxx.rest.xxx"),
// ,excludeFilters = {
// @ComponentScan.Filter(type= org.springframework.context.annotation.FilterType.REGEX, pattern="cn.ibizlab.xxx.rest.xxx"),
// }
)
@Import({
......@@ -34,13 +34,13 @@ import org.springframework.beans.factory.annotation.Autowired;
})
@EnableAsync
@EnableScheduling
public class DevBootApplication extends WebMvcConfigurerAdapter{
public class DevBootApplication extends WebMvcConfigurerAdapter {
@Autowired
SearchContextHandlerMethodArgumentResolver resolver;
public static void main(String[] args) {
SpringApplication.run(DevBootApplication.class,args);
SpringApplication.run(DevBootApplication.class, args);
}
@Override
......
......@@ -110,9 +110,9 @@ public class DevBootSecurityConfig extends WebSecurityConfigurerAdapter {
"/v2/**"
).permitAll()
//放行登录请求
.antMatchers( HttpMethod.POST,"/"+loginPath).permitAll()
.antMatchers( HttpMethod.POST, "/"+loginPath).permitAll()
//放行注销请求
.antMatchers( HttpMethod.GET,"/"+logoutPath).permitAll()
.antMatchers( HttpMethod.GET, "/"+logoutPath).permitAll()
// 文件操作
.antMatchers("/"+downloadpath+"/**").permitAll()
.antMatchers("/"+uploadpath).permitAll()
......
......@@ -22,7 +22,7 @@ public class IBIZCustomer_INTFExService extends IBIZCustomer_INTFServiceImpl {
}
/**
* 自定义行为[XXX]用户扩展
* [XXX] 行为扩展
* @param et
* @return
*/
......
......@@ -22,7 +22,7 @@ public class IBIZOrderExService extends IBIZOrderServiceImpl {
}
/**
* 自定义行为[BUIAction]用户扩展
* [BUIAction:后台界面行为] 行为扩展
* @param et
* @return
*/
......
......@@ -22,7 +22,7 @@ public class IBIZOrderTypeExService extends IBIZOrderTypeServiceImpl {
}
/**
* 自定义行为[ResetCodeList]用户扩展
* [ResetCodeList] 行为扩展
* @param et
* @return
*/
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZACCOUNT",resultMap = "IBIZAccountResultMap")
@TableName(value = "T_IBIZACCOUNT", resultMap = "IBIZAccountResultMap")
public class IBIZAccount extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZAccount extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -87,7 +87,7 @@ public class IBIZAccount extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -102,7 +102,7 @@ public class IBIZAccount extends EntityMP implements Serializable {
* 账户标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizaccountid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizaccountid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizaccountid")
@JsonProperty("ibizaccountid")
private String ibizaccountid;
......@@ -113,24 +113,24 @@ public class IBIZAccount extends EntityMP implements Serializable {
* 设置 [开户行]
*/
public void setBankname(String bankname) {
this.bankname = bankname ;
this.modify("bankname",bankname);
this.bankname = bankname;
this.modify("bankname", bankname);
}
/**
* 设置 [账户名称]
*/
public void setIbizaccountname(String ibizaccountname) {
this.ibizaccountname = ibizaccountname ;
this.modify("ibizaccountname",ibizaccountname);
this.ibizaccountname = ibizaccountname;
this.modify("ibizaccountname", ibizaccountname);
}
/**
* 设置 [开户银行号]
*/
public void setBankaccountnum(String bankaccountnum) {
this.bankaccountnum = bankaccountnum ;
this.modify("bankaccountnum",bankaccountnum);
this.bankaccountnum = bankaccountnum;
this.modify("bankaccountnum", bankaccountnum);
}
......@@ -144,7 +144,7 @@ public class IBIZAccount extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizaccountid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZCPU",resultMap = "IBIZCPUResultMap")
@TableName(value = "T_IBIZCPU", resultMap = "IBIZCPUResultMap")
public class IBIZCPU extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZCPU extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -71,7 +71,7 @@ public class IBIZCPU extends EntityMP implements Serializable {
* 处理器标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizcpuid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizcpuid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizcpuid")
@JsonProperty("ibizcpuid")
private String ibizcpuid;
......@@ -87,7 +87,7 @@ public class IBIZCPU extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -134,8 +134,8 @@ public class IBIZCPU extends EntityMP implements Serializable {
* 设置 [名称]
*/
public void setIbizcpuname(String ibizcpuname) {
this.ibizcpuname = ibizcpuname ;
this.modify("ibizcpuname",ibizcpuname);
this.ibizcpuname = ibizcpuname;
this.modify("ibizcpuname", ibizcpuname);
}
......@@ -149,7 +149,7 @@ public class IBIZCPU extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizcpuid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZCUSTOM",resultMap = "IBIZCustomResultMap")
@TableName(value = "T_IBIZCUSTOM", resultMap = "IBIZCustomResultMap")
public class IBIZCustom extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -56,7 +56,7 @@ public class IBIZCustom extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -72,7 +72,7 @@ public class IBIZCustom extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -80,7 +80,7 @@ public class IBIZCustom extends EntityMP implements Serializable {
* 自定义标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizcustomid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizcustomid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizcustomid")
@JsonProperty("ibizcustomid")
private String ibizcustomid;
......@@ -99,8 +99,8 @@ public class IBIZCustom extends EntityMP implements Serializable {
* 设置 [自定义名称]
*/
public void setIbizcustomname(String ibizcustomname) {
this.ibizcustomname = ibizcustomname ;
this.modify("ibizcustomname",ibizcustomname);
this.ibizcustomname = ibizcustomname;
this.modify("ibizcustomname", ibizcustomname);
}
......@@ -114,7 +114,7 @@ public class IBIZCustom extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizcustomid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZCUSTOMER",resultMap = "IBIZCustomerResultMap")
@TableName(value = "T_IBIZCUSTOMER", resultMap = "IBIZCustomerResultMap")
public class IBIZCustomer extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -63,7 +63,7 @@ public class IBIZCustomer extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -72,7 +72,7 @@ public class IBIZCustomer extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -87,7 +87,7 @@ public class IBIZCustomer extends EntityMP implements Serializable {
* 客户标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizcustomerid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizcustomerid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizcustomerid")
@JsonProperty("ibizcustomerid")
private String ibizcustomerid;
......@@ -120,32 +120,32 @@ public class IBIZCustomer extends EntityMP implements Serializable {
* 设置 [客户编号]
*/
public void setSn(String sn) {
this.sn = sn ;
this.modify("sn",sn);
this.sn = sn;
this.modify("sn", sn);
}
/**
* 设置 [客户编号]
*/
public void setCustomeruid(String customeruid) {
this.customeruid = customeruid ;
this.modify("customeruid",customeruid);
this.customeruid = customeruid;
this.modify("customeruid", customeruid);
}
/**
* 设置 [公司地址]
*/
public void setAddress(String address) {
this.address = address ;
this.modify("address",address);
this.address = address;
this.modify("address", address);
}
/**
* 设置 [客户名称]
*/
public void setIbizcustomername(String ibizcustomername) {
this.ibizcustomername = ibizcustomername ;
this.modify("ibizcustomername",ibizcustomername);
this.ibizcustomername = ibizcustomername;
this.modify("ibizcustomername", ibizcustomername);
}
......@@ -159,7 +159,7 @@ public class IBIZCustomer extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizcustomerid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "",resultMap = "IBIZCustomerMGResultMap")
@TableName(value = "", resultMap = "IBIZCustomerMGResultMap")
public class IBIZCustomerMG extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -100,7 +100,7 @@ public class IBIZCustomerMG extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizcustomerid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZCUSTOMER",resultMap = "IBIZCustomer_INTFResultMap")
@TableName(value = "T_IBIZCUSTOMER", resultMap = "IBIZCustomer_INTFResultMap")
public class IBIZCustomer_INTF extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZCustomer_INTF extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -109,7 +109,7 @@ public class IBIZCustomer_INTF extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -117,7 +117,7 @@ public class IBIZCustomer_INTF extends EntityMP implements Serializable {
* 客户标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizcustomerid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizcustomerid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizcustomerid")
@JsonProperty("ibizcustomerid")
private String ibizcustomerid;
......@@ -128,32 +128,32 @@ public class IBIZCustomer_INTF extends EntityMP implements Serializable {
* 设置 [客户编号]
*/
public void setSn(String sn) {
this.sn = sn ;
this.modify("sn",sn);
this.sn = sn;
this.modify("sn", sn);
}
/**
* 设置 [客户编号]
*/
public void setCustomeruid(String customeruid) {
this.customeruid = customeruid ;
this.modify("customeruid",customeruid);
this.customeruid = customeruid;
this.modify("customeruid", customeruid);
}
/**
* 设置 [公司地址]
*/
public void setAddress(String address) {
this.address = address ;
this.modify("address",address);
this.address = address;
this.modify("address", address);
}
/**
* 设置 [客户名称]
*/
public void setIbizcustomername(String ibizcustomername) {
this.ibizcustomername = ibizcustomername ;
this.modify("ibizcustomername",ibizcustomername);
this.ibizcustomername = ibizcustomername;
this.modify("ibizcustomername", ibizcustomername);
}
......@@ -167,7 +167,7 @@ public class IBIZCustomer_INTF extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizcustomerid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZHARDWARE",resultMap = "IBIZHardwareResultMap")
@TableName(value = "T_IBIZHARDWARE", resultMap = "IBIZHardwareResultMap")
public class IBIZHardware extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -78,7 +78,7 @@ public class IBIZHardware extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -87,7 +87,7 @@ public class IBIZHardware extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -102,7 +102,7 @@ public class IBIZHardware extends EntityMP implements Serializable {
* 硬件标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizhardwareid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizhardwareid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizhardwareid")
@JsonProperty("ibizhardwareid")
private String ibizhardwareid;
......@@ -134,48 +134,48 @@ public class IBIZHardware extends EntityMP implements Serializable {
* 设置 [单位]
*/
public void setUnit(String unit) {
this.unit = unit ;
this.modify("unit",unit);
this.unit = unit;
this.modify("unit", unit);
}
/**
* 设置 [分组类型]
*/
public void setIbizhardwaretype(String ibizhardwaretype) {
this.ibizhardwaretype = ibizhardwaretype ;
this.modify("ibizhardwaretype",ibizhardwaretype);
this.ibizhardwaretype = ibizhardwaretype;
this.modify("ibizhardwaretype", ibizhardwaretype);
}
/**
* 设置 [产品编号]
*/
public void setProductuid(String productuid) {
this.productuid = productuid ;
this.modify("productuid",productuid);
this.productuid = productuid;
this.modify("productuid", productuid);
}
/**
* 设置 [名称]
*/
public void setIbizhardwarename(String ibizhardwarename) {
this.ibizhardwarename = ibizhardwarename ;
this.modify("ibizhardwarename",ibizhardwarename);
this.ibizhardwarename = ibizhardwarename;
this.modify("ibizhardwarename", ibizhardwarename);
}
/**
* 设置 [单价]
*/
public void setUnitprice(Double unitprice) {
this.unitprice = unitprice ;
this.modify("unitprice",unitprice);
this.unitprice = unitprice;
this.modify("unitprice", unitprice);
}
/**
* 设置 [生产厂商]
*/
public void setProducer(String producer) {
this.producer = producer ;
this.modify("producer",producer);
this.producer = producer;
this.modify("producer", producer);
}
......@@ -189,7 +189,7 @@ public class IBIZHardware extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizhardwareid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZORDER",resultMap = "IBIZOrderResultMap")
@TableName(value = "T_IBIZORDER", resultMap = "IBIZOrderResultMap")
public class IBIZOrder extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -54,7 +54,7 @@ public class IBIZOrder extends EntityMP implements Serializable {
* 订单结束时间
*/
@TableField(value = "endtime")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "endtime", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("endtime")
private Timestamp endtime;
......@@ -70,7 +70,7 @@ public class IBIZOrder extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -86,7 +86,7 @@ public class IBIZOrder extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -130,7 +130,7 @@ public class IBIZOrder extends EntityMP implements Serializable {
* 订单标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizorderid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizorderid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizorderid")
@JsonProperty("ibizorderid")
private String ibizorderid;
......@@ -146,7 +146,7 @@ public class IBIZOrder extends EntityMP implements Serializable {
* 订单开始时间
*/
@TableField(value = "starttime")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "starttime", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("starttime")
private Timestamp starttime;
......@@ -184,7 +184,7 @@ public class IBIZOrder extends EntityMP implements Serializable {
* 订单时间
*/
@TableField(value = "ordertime")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh", timezone = "GMT+8")
@JSONField(name = "ordertime", format = "yyyy-MM-dd")
@JsonProperty("ordertime")
private Timestamp ordertime;
......@@ -224,16 +224,16 @@ public class IBIZOrder extends EntityMP implements Serializable {
* 设置 [图片]
*/
public void setTp(String tp) {
this.tp = tp ;
this.modify("tp",tp);
this.tp = tp;
this.modify("tp", tp);
}
/**
* 设置 [订单结束时间]
*/
public void setEndtime(Timestamp endtime) {
this.endtime = endtime ;
this.modify("endtime",endtime);
this.endtime = endtime;
this.modify("endtime", endtime);
}
/**
......@@ -250,72 +250,72 @@ public class IBIZOrder extends EntityMP implements Serializable {
* 设置 [工作流状态]
*/
public void setWfstate(Integer wfstate) {
this.wfstate = wfstate ;
this.modify("wfstate",wfstate);
this.wfstate = wfstate;
this.modify("wfstate", wfstate);
}
/**
* 设置 [审批意见]
*/
public void setOpinion(String opinion) {
this.opinion = opinion ;
this.modify("opinion",opinion);
this.opinion = opinion;
this.modify("opinion", opinion);
}
/**
* 设置 [订单类型]
*/
public void setOrdertype(String ordertype) {
this.ordertype = ordertype ;
this.modify("ordertype",ordertype);
this.ordertype = ordertype;
this.modify("ordertype", ordertype);
}
/**
* 设置 [明细数]
*/
public void setDetailnum(Integer detailnum) {
this.detailnum = detailnum ;
this.modify("detailnum",detailnum);
this.detailnum = detailnum;
this.modify("detailnum", detailnum);
}
/**
* 设置 [工作流实例]
*/
public void setWfinstanceid(String wfinstanceid) {
this.wfinstanceid = wfinstanceid ;
this.modify("wfinstanceid",wfinstanceid);
this.wfinstanceid = wfinstanceid;
this.modify("wfinstanceid", wfinstanceid);
}
/**
* 设置 [总计]
*/
public void setAmount(Double amount) {
this.amount = amount ;
this.modify("amount",amount);
this.amount = amount;
this.modify("amount", amount);
}
/**
* 设置 [订单编号]
*/
public void setOrderuid(String orderuid) {
this.orderuid = orderuid ;
this.modify("orderuid",orderuid);
this.orderuid = orderuid;
this.modify("orderuid", orderuid);
}
/**
* 设置 [订单状态]
*/
public void setOrderstate(String orderstate) {
this.orderstate = orderstate ;
this.modify("orderstate",orderstate);
this.orderstate = orderstate;
this.modify("orderstate", orderstate);
}
/**
* 设置 [订单开始时间]
*/
public void setStarttime(Timestamp starttime) {
this.starttime = starttime ;
this.modify("starttime",starttime);
this.starttime = starttime;
this.modify("starttime", starttime);
}
/**
......@@ -332,24 +332,24 @@ public class IBIZOrder extends EntityMP implements Serializable {
* 设置 [工作流步骤]
*/
public void setWfstep(String wfstep) {
this.wfstep = wfstep ;
this.modify("wfstep",wfstep);
this.wfstep = wfstep;
this.modify("wfstep", wfstep);
}
/**
* 设置 [订单名称]
*/
public void setIbizordername(String ibizordername) {
this.ibizordername = ibizordername ;
this.modify("ibizordername",ibizordername);
this.ibizordername = ibizordername;
this.modify("ibizordername", ibizordername);
}
/**
* 设置 [订单时间]
*/
public void setOrdertime(Timestamp ordertime) {
this.ordertime = ordertime ;
this.modify("ordertime",ordertime);
this.ordertime = ordertime;
this.modify("ordertime", ordertime);
}
/**
......@@ -366,16 +366,16 @@ public class IBIZOrder extends EntityMP implements Serializable {
* 设置 [备注]
*/
public void setMemo(String memo) {
this.memo = memo ;
this.modify("memo",memo);
this.memo = memo;
this.modify("memo", memo);
}
/**
* 设置 [客户标识]
*/
public void setIbizcustomerid(String ibizcustomerid) {
this.ibizcustomerid = ibizcustomerid ;
this.modify("ibizcustomerid",ibizcustomerid);
this.ibizcustomerid = ibizcustomerid;
this.modify("ibizcustomerid", ibizcustomerid);
}
......@@ -389,7 +389,7 @@ public class IBIZOrder extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizorderid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZORDERDETAIL",resultMap = "IBIZOrderDetailResultMap")
@TableName(value = "T_IBIZORDERDETAIL", resultMap = "IBIZOrderDetailResultMap")
public class IBIZOrderDetail extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -55,7 +55,7 @@ public class IBIZOrderDetail extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -64,7 +64,7 @@ public class IBIZOrderDetail extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -101,7 +101,7 @@ public class IBIZOrderDetail extends EntityMP implements Serializable {
* 订单明细标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizorderdetailid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizorderdetailid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizorderdetailid")
@JsonProperty("ibizorderdetailid")
private String ibizorderdetailid;
......@@ -185,40 +185,40 @@ public class IBIZOrderDetail extends EntityMP implements Serializable {
* 设置 [订单明细名称]
*/
public void setIbizorderdetailname(String ibizorderdetailname) {
this.ibizorderdetailname = ibizorderdetailname ;
this.modify("ibizorderdetailname",ibizorderdetailname);
this.ibizorderdetailname = ibizorderdetailname;
this.modify("ibizorderdetailname", ibizorderdetailname);
}
/**
* 设置 [测试属性]
*/
public void setIbizorderdetaila(String ibizorderdetaila) {
this.ibizorderdetaila = ibizorderdetaila ;
this.modify("ibizorderdetaila",ibizorderdetaila);
this.ibizorderdetaila = ibizorderdetaila;
this.modify("ibizorderdetaila", ibizorderdetaila);
}
/**
* 设置 [数量]
*/
public void setQuantity(Integer quantity) {
this.quantity = quantity ;
this.modify("quantity",quantity);
this.quantity = quantity;
this.modify("quantity", quantity);
}
/**
* 设置 [订单标识]
*/
public void setIbizorderid(String ibizorderid) {
this.ibizorderid = ibizorderid ;
this.modify("ibizorderid",ibizorderid);
this.ibizorderid = ibizorderid;
this.modify("ibizorderid", ibizorderid);
}
/**
* 设置 [统一产品标识]
*/
public void setIbizuniproductid(String ibizuniproductid) {
this.ibizuniproductid = ibizuniproductid ;
this.modify("ibizuniproductid",ibizuniproductid);
this.ibizuniproductid = ibizuniproductid;
this.modify("ibizuniproductid", ibizuniproductid);
}
......@@ -232,7 +232,7 @@ public class IBIZOrderDetail extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizorderdetailid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZORDERTYPE",resultMap = "IBIZOrderTypeResultMap")
@TableName(value = "T_IBIZORDERTYPE", resultMap = "IBIZOrderTypeResultMap")
public class IBIZOrderType extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -47,7 +47,7 @@ public class IBIZOrderType extends EntityMP implements Serializable {
* 逻辑有效标志
*/
@DEField(preType = DEPredefinedFieldType.LOGICVALID, logicval = "1", logicdelval = "0")
@TableLogic(value= "1", delval = "0")
@TableLogic(value = "1", delval = "0")
@TableField(value = "enable")
@JSONField(name = "enable")
@JsonProperty("enable")
......@@ -65,7 +65,7 @@ public class IBIZOrderType extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -81,7 +81,7 @@ public class IBIZOrderType extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -97,7 +97,7 @@ public class IBIZOrderType extends EntityMP implements Serializable {
* 订单类型标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizordertypeid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizordertypeid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizordertypeid")
@JsonProperty("ibizordertypeid")
private String ibizordertypeid;
......@@ -108,8 +108,8 @@ public class IBIZOrderType extends EntityMP implements Serializable {
* 设置 [订单类型名称]
*/
public void setIbizordertypename(String ibizordertypename) {
this.ibizordertypename = ibizordertypename ;
this.modify("ibizordertypename",ibizordertypename);
this.ibizordertypename = ibizordertypename;
this.modify("ibizordertypename", ibizordertypename);
}
......@@ -123,7 +123,7 @@ public class IBIZOrderType extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizordertypeid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZQJ",resultMap = "IBIZQJResultMap")
@TableName(value = "T_IBIZQJ", resultMap = "IBIZQJResultMap")
public class IBIZQJ extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZQJ extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -57,7 +57,7 @@ public class IBIZQJ extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -80,7 +80,7 @@ public class IBIZQJ extends EntityMP implements Serializable {
* 请假标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizqjid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizqjid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizqjid")
@JsonProperty("ibizqjid")
private String ibizqjid;
......@@ -114,24 +114,24 @@ public class IBIZQJ extends EntityMP implements Serializable {
* 设置 [请假名称]
*/
public void setIbizqjname(String ibizqjname) {
this.ibizqjname = ibizqjname ;
this.modify("ibizqjname",ibizqjname);
this.ibizqjname = ibizqjname;
this.modify("ibizqjname", ibizqjname);
}
/**
* 设置 [请假天数]
*/
public void setQjts(Integer qjts) {
this.qjts = qjts ;
this.modify("qjts",qjts);
this.qjts = qjts;
this.modify("qjts", qjts);
}
/**
* 设置 [剩余请假天数]
*/
public void setSyqjts(Integer syqjts) {
this.syqjts = syqjts ;
this.modify("syqjts",syqjts);
this.syqjts = syqjts;
this.modify("syqjts", syqjts);
}
......@@ -145,7 +145,7 @@ public class IBIZQJ extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizqjid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE",resultMap = "IBIZSampleResultMap")
@TableName(value = "T_IBIZSAMPLE", resultMap = "IBIZSampleResultMap")
public class IBIZSample extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZSample extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -99,7 +99,7 @@ public class IBIZSample extends EntityMP implements Serializable {
* 示例数据库标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsampleid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsampleid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsampleid")
@JsonProperty("ibizsampleid")
private String ibizsampleid;
......@@ -136,7 +136,7 @@ public class IBIZSample extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -232,160 +232,160 @@ public class IBIZSample extends EntityMP implements Serializable {
* 设置 [其他样式链接4]
*/
public void setOslink4(String oslink4) {
this.oslink4 = oslink4 ;
this.modify("oslink4",oslink4);
this.oslink4 = oslink4;
this.modify("oslink4", oslink4);
}
/**
* 设置 [分组标题1]
*/
public void setTitle1(String title1) {
this.title1 = title1 ;
this.modify("title1",title1);
this.title1 = title1;
this.modify("title1", title1);
}
/**
* 设置 [示例数据库名称]
*/
public void setIbizsamplename(String ibizsamplename) {
this.ibizsamplename = ibizsamplename ;
this.modify("ibizsamplename",ibizsamplename);
this.ibizsamplename = ibizsamplename;
this.modify("ibizsamplename", ibizsamplename);
}
/**
* 设置 [其他样式链接3]
*/
public void setOslink3(String oslink3) {
this.oslink3 = oslink3 ;
this.modify("oslink3",oslink3);
this.oslink3 = oslink3;
this.modify("oslink3", oslink3);
}
/**
* 设置 [链接1]
*/
public void setLink1(String link1) {
this.link1 = link1 ;
this.modify("link1",link1);
this.link1 = link1;
this.modify("link1", link1);
}
/**
* 设置 [分组标题6]
*/
public void setTitle6(String title6) {
this.title6 = title6 ;
this.modify("title6",title6);
this.title6 = title6;
this.modify("title6", title6);
}
/**
* 设置 [链接6]
*/
public void setLink6(String link6) {
this.link6 = link6 ;
this.modify("link6",link6);
this.link6 = link6;
this.modify("link6", link6);
}
/**
* 设置 [分组标题5]
*/
public void setTitle5(String title5) {
this.title5 = title5 ;
this.modify("title5",title5);
this.title5 = title5;
this.modify("title5", title5);
}
/**
* 设置 [分组标题4]
*/
public void setTitle4(String title4) {
this.title4 = title4 ;
this.modify("title4",title4);
this.title4 = title4;
this.modify("title4", title4);
}
/**
* 设置 [其他样式链接1]
*/
public void setOslink1(String oslink1) {
this.oslink1 = oslink1 ;
this.modify("oslink1",oslink1);
this.oslink1 = oslink1;
this.modify("oslink1", oslink1);
}
/**
* 设置 [其他样式链接5]
*/
public void setOslink5(String oslink5) {
this.oslink5 = oslink5 ;
this.modify("oslink5",oslink5);
this.oslink5 = oslink5;
this.modify("oslink5", oslink5);
}
/**
* 设置 [其他样式链接6]
*/
public void setOslink6(String oslink6) {
this.oslink6 = oslink6 ;
this.modify("oslink6",oslink6);
this.oslink6 = oslink6;
this.modify("oslink6", oslink6);
}
/**
* 设置 [链接5]
*/
public void setLink5(String link5) {
this.link5 = link5 ;
this.modify("link5",link5);
this.link5 = link5;
this.modify("link5", link5);
}
/**
* 设置 [链接3]
*/
public void setLink3(String link3) {
this.link3 = link3 ;
this.modify("link3",link3);
this.link3 = link3;
this.modify("link3", link3);
}
/**
* 设置 [分组标题2]
*/
public void setTitle2(String title2) {
this.title2 = title2 ;
this.modify("title2",title2);
this.title2 = title2;
this.modify("title2", title2);
}
/**
* 设置 [其他样式链接2]
*/
public void setOslink2(String oslink2) {
this.oslink2 = oslink2 ;
this.modify("oslink2",oslink2);
this.oslink2 = oslink2;
this.modify("oslink2", oslink2);
}
/**
* 设置 [分组标题3]
*/
public void setTitle3(String title3) {
this.title3 = title3 ;
this.modify("title3",title3);
this.title3 = title3;
this.modify("title3", title3);
}
/**
* 设置 [链接4]
*/
public void setLink4(String link4) {
this.link4 = link4 ;
this.modify("link4",link4);
this.link4 = link4;
this.modify("link4", link4);
}
/**
* 设置 [链接2]
*/
public void setLink2(String link2) {
this.link2 = link2 ;
this.modify("link2",link2);
this.link2 = link2;
this.modify("link2", link2);
}
/**
* 设置 [示例类型]
*/
public void setSampletype(String sampletype) {
this.sampletype = sampletype ;
this.modify("sampletype",sampletype);
this.sampletype = sampletype;
this.modify("sampletype", sampletype);
}
......@@ -399,7 +399,7 @@ public class IBIZSample extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsampleid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0002",resultMap = "IBIZSample0002ResultMap")
@TableName(value = "T_IBIZSAMPLE0002", resultMap = "IBIZSample0002ResultMap")
public class IBIZSample0002 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -62,7 +62,7 @@ public class IBIZSample0002 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -93,7 +93,7 @@ public class IBIZSample0002 extends EntityMP implements Serializable {
* 首页图表数据源标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0002id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0002id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0002id")
@JsonProperty("ibizsample0002id")
private String ibizsample0002id;
......@@ -102,7 +102,7 @@ public class IBIZSample0002 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -113,24 +113,24 @@ public class IBIZSample0002 extends EntityMP implements Serializable {
* 设置 [实体]
*/
public void setDe(String de) {
this.de = de ;
this.modify("de",de);
this.de = de;
this.modify("de", de);
}
/**
* 设置 [实体数据量]
*/
public void setDenum(Integer denum) {
this.denum = denum ;
this.modify("denum",denum);
this.denum = denum;
this.modify("denum", denum);
}
/**
* 设置 [首页图表数据源名称]
*/
public void setIbizsample0002name(String ibizsample0002name) {
this.ibizsample0002name = ibizsample0002name ;
this.modify("ibizsample0002name",ibizsample0002name);
this.ibizsample0002name = ibizsample0002name;
this.modify("ibizsample0002name", ibizsample0002name);
}
......@@ -144,7 +144,7 @@ public class IBIZSample0002 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0002id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0003",resultMap = "IBIZSample0003ResultMap")
@TableName(value = "T_IBIZSAMPLE0003", resultMap = "IBIZSample0003ResultMap")
public class IBIZSample0003 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -62,7 +62,7 @@ public class IBIZSample0003 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -78,7 +78,7 @@ public class IBIZSample0003 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -94,7 +94,7 @@ public class IBIZSample0003 extends EntityMP implements Serializable {
* IBIZSAMPLE0003标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0003id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0003id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0003id")
@JsonProperty("ibizsample0003id")
private String ibizsample0003id;
......@@ -135,32 +135,32 @@ public class IBIZSample0003 extends EntityMP implements Serializable {
* 设置 [名称]
*/
public void setIbizsample0003name(String ibizsample0003name) {
this.ibizsample0003name = ibizsample0003name ;
this.modify("ibizsample0003name",ibizsample0003name);
this.ibizsample0003name = ibizsample0003name;
this.modify("ibizsample0003name", ibizsample0003name);
}
/**
* 设置 [备注]
*/
public void setMemo(String memo) {
this.memo = memo ;
this.modify("memo",memo);
this.memo = memo;
this.modify("memo", memo);
}
/**
* 设置 [FIELD01]
*/
public void setField01(String field01) {
this.field01 = field01 ;
this.modify("field01",field01);
this.field01 = field01;
this.modify("field01", field01);
}
/**
* 设置 [IBIZSAMPLE0003标识]
*/
public void setPibizsample0003id(String pibizsample0003id) {
this.pibizsample0003id = pibizsample0003id ;
this.modify("pibizsample0003id",pibizsample0003id);
this.pibizsample0003id = pibizsample0003id;
this.modify("pibizsample0003id", pibizsample0003id);
}
......@@ -174,7 +174,7 @@ public class IBIZSample0003 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0003id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0004",resultMap = "IBIZSample0004ResultMap")
@TableName(value = "T_IBIZSAMPLE0004", resultMap = "IBIZSample0004ResultMap")
public class IBIZSample0004 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -55,7 +55,7 @@ public class IBIZSample0004 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -93,7 +93,7 @@ public class IBIZSample0004 extends EntityMP implements Serializable {
* 订单时间
*/
@TableField(value = "mvdate")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh", timezone = "GMT+8")
@JSONField(name = "mvdate", format = "yyyy-MM-dd")
@JsonProperty("mvdate")
private Timestamp mvdate;
......@@ -102,7 +102,7 @@ public class IBIZSample0004 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -145,7 +145,7 @@ public class IBIZSample0004 extends EntityMP implements Serializable {
* 多版本流程标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0004id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0004id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0004id")
@JsonProperty("ibizsample0004id")
private String ibizsample0004id;
......@@ -163,32 +163,32 @@ public class IBIZSample0004 extends EntityMP implements Serializable {
* 设置 [备注]
*/
public void setMemo(String memo) {
this.memo = memo ;
this.modify("memo",memo);
this.memo = memo;
this.modify("memo", memo);
}
/**
* 设置 [状态]
*/
public void setWfmvstate(String wfmvstate) {
this.wfmvstate = wfmvstate ;
this.modify("wfmvstate",wfmvstate);
this.wfmvstate = wfmvstate;
this.modify("wfmvstate", wfmvstate);
}
/**
* 设置 [订单类型]
*/
public void setWfmvtype(String wfmvtype) {
this.wfmvtype = wfmvtype ;
this.modify("wfmvtype",wfmvtype);
this.wfmvtype = wfmvtype;
this.modify("wfmvtype", wfmvtype);
}
/**
* 设置 [订单时间]
*/
public void setMvdate(Timestamp mvdate) {
this.mvdate = mvdate ;
this.modify("mvdate",mvdate);
this.mvdate = mvdate;
this.modify("mvdate", mvdate);
}
/**
......@@ -205,48 +205,48 @@ public class IBIZSample0004 extends EntityMP implements Serializable {
* 设置 [工作流步骤]
*/
public void setWfmvstep(String wfmvstep) {
this.wfmvstep = wfmvstep ;
this.modify("wfmvstep",wfmvstep);
this.wfmvstep = wfmvstep;
this.modify("wfmvstep", wfmvstep);
}
/**
* 设置 [工作流版本]
*/
public void setWfversion(String wfversion) {
this.wfversion = wfversion ;
this.modify("wfversion",wfversion);
this.wfversion = wfversion;
this.modify("wfversion", wfversion);
}
/**
* 设置 [工作流步骤]
*/
public void setWfstate(Integer wfstate) {
this.wfstate = wfstate ;
this.modify("wfstate",wfstate);
this.wfstate = wfstate;
this.modify("wfstate", wfstate);
}
/**
* 设置 [名称]
*/
public void setIbizsample0004name(String ibizsample0004name) {
this.ibizsample0004name = ibizsample0004name ;
this.modify("ibizsample0004name",ibizsample0004name);
this.ibizsample0004name = ibizsample0004name;
this.modify("ibizsample0004name", ibizsample0004name);
}
/**
* 设置 [工作流实例]
*/
public void setWfinstanceid(String wfinstanceid) {
this.wfinstanceid = wfinstanceid ;
this.modify("wfinstanceid",wfinstanceid);
this.wfinstanceid = wfinstanceid;
this.modify("wfinstanceid", wfinstanceid);
}
/**
* 设置 [订单金额]
*/
public void setJe(BigDecimal je) {
this.je = je ;
this.modify("je",je);
this.je = je;
this.modify("je", je);
}
......@@ -260,7 +260,7 @@ public class IBIZSample0004 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0004id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0005",resultMap = "IBIZSample0005ResultMap")
@TableName(value = "T_IBIZSAMPLE0005", resultMap = "IBIZSample0005ResultMap")
public class IBIZSample0005 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -69,7 +69,7 @@ public class IBIZSample0005 extends EntityMP implements Serializable {
* 订单时间
*/
@TableField(value = "mmdate")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh", timezone = "GMT+8")
@JSONField(name = "mmdate", format = "yyyy-MM-dd")
@JsonProperty("mmdate")
private Timestamp mmdate;
......@@ -77,7 +77,7 @@ public class IBIZSample0005 extends EntityMP implements Serializable {
* 多模式流程标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0005id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0005id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0005id")
@JsonProperty("ibizsample0005id")
private String ibizsample0005id;
......@@ -93,7 +93,7 @@ public class IBIZSample0005 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -102,7 +102,7 @@ public class IBIZSample0005 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -163,24 +163,24 @@ public class IBIZSample0005 extends EntityMP implements Serializable {
* 设置 [订单金额]
*/
public void setJe(BigDecimal je) {
this.je = je ;
this.modify("je",je);
this.je = je;
this.modify("je", je);
}
/**
* 设置 [工作流实例]
*/
public void setWfinstanceid(String wfinstanceid) {
this.wfinstanceid = wfinstanceid ;
this.modify("wfinstanceid",wfinstanceid);
this.wfinstanceid = wfinstanceid;
this.modify("wfinstanceid", wfinstanceid);
}
/**
* 设置 [订单时间]
*/
public void setMmdate(Timestamp mmdate) {
this.mmdate = mmdate ;
this.modify("mmdate",mmdate);
this.mmdate = mmdate;
this.modify("mmdate", mmdate);
}
/**
......@@ -197,56 +197,56 @@ public class IBIZSample0005 extends EntityMP implements Serializable {
* 设置 [工作流版本]
*/
public void setWfversion(String wfversion) {
this.wfversion = wfversion ;
this.modify("wfversion",wfversion);
this.wfversion = wfversion;
this.modify("wfversion", wfversion);
}
/**
* 设置 [工作流步骤]
*/
public void setWfmmstep(String wfmmstep) {
this.wfmmstep = wfmmstep ;
this.modify("wfmmstep",wfmmstep);
this.wfmmstep = wfmmstep;
this.modify("wfmmstep", wfmmstep);
}
/**
* 设置 [订单类型]
*/
public void setWfmmtype(String wfmmtype) {
this.wfmmtype = wfmmtype ;
this.modify("wfmmtype",wfmmtype);
this.wfmmtype = wfmmtype;
this.modify("wfmmtype", wfmmtype);
}
/**
* 设置 [工作流步骤]
*/
public void setWfstate(Integer wfstate) {
this.wfstate = wfstate ;
this.modify("wfstate",wfstate);
this.wfstate = wfstate;
this.modify("wfstate", wfstate);
}
/**
* 设置 [多模式流程名称]
*/
public void setIbizsample0005name(String ibizsample0005name) {
this.ibizsample0005name = ibizsample0005name ;
this.modify("ibizsample0005name",ibizsample0005name);
this.ibizsample0005name = ibizsample0005name;
this.modify("ibizsample0005name", ibizsample0005name);
}
/**
* 设置 [备注]
*/
public void setMemo(String memo) {
this.memo = memo ;
this.modify("memo",memo);
this.memo = memo;
this.modify("memo", memo);
}
/**
* 设置 [状态]
*/
public void setWfmmstate(String wfmmstate) {
this.wfmmstate = wfmmstate ;
this.modify("wfmmstate",wfmmstate);
this.wfmmstate = wfmmstate;
this.modify("wfmmstate", wfmmstate);
}
......@@ -260,7 +260,7 @@ public class IBIZSample0005 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0005id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0006",resultMap = "IBIZSample0006ResultMap")
@TableName(value = "T_IBIZSAMPLE0006", resultMap = "IBIZSample0006ResultMap")
public class IBIZSample0006 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -61,7 +61,7 @@ public class IBIZSample0006 extends EntityMP implements Serializable {
* 嵌套流程(主)标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0006id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0006id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0006id")
@JsonProperty("ibizsample0006id")
private String ibizsample0006id;
......@@ -70,7 +70,7 @@ public class IBIZSample0006 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -99,7 +99,7 @@ public class IBIZSample0006 extends EntityMP implements Serializable {
* 公文日期
*/
@TableField(value = "ddate")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh", timezone = "GMT+8")
@JSONField(name = "ddate", format = "yyyy-MM-dd")
@JsonProperty("ddate")
private Timestamp ddate;
......@@ -108,7 +108,7 @@ public class IBIZSample0006 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -170,48 +170,48 @@ public class IBIZSample0006 extends EntityMP implements Serializable {
* 设置 [业务状态]
*/
public void setYwstate(String ywstate) {
this.ywstate = ywstate ;
this.modify("ywstate",ywstate);
this.ywstate = ywstate;
this.modify("ywstate", ywstate);
}
/**
* 设置 [公文编号]
*/
public void setDnum(String dnum) {
this.dnum = dnum ;
this.modify("dnum",dnum);
this.dnum = dnum;
this.modify("dnum", dnum);
}
/**
* 设置 [备注]
*/
public void setMemo(String memo) {
this.memo = memo ;
this.modify("memo",memo);
this.memo = memo;
this.modify("memo", memo);
}
/**
* 设置 [工作流实例]
*/
public void setWfinstanceid(String wfinstanceid) {
this.wfinstanceid = wfinstanceid ;
this.modify("wfinstanceid",wfinstanceid);
this.wfinstanceid = wfinstanceid;
this.modify("wfinstanceid", wfinstanceid);
}
/**
* 设置 [会签部门]
*/
public void setHqdept(String hqdept) {
this.hqdept = hqdept ;
this.modify("hqdept",hqdept);
this.hqdept = hqdept;
this.modify("hqdept", hqdept);
}
/**
* 设置 [公文日期]
*/
public void setDdate(Timestamp ddate) {
this.ddate = ddate ;
this.modify("ddate",ddate);
this.ddate = ddate;
this.modify("ddate", ddate);
}
/**
......@@ -228,40 +228,40 @@ public class IBIZSample0006 extends EntityMP implements Serializable {
* 设置 [公文名称]
*/
public void setIbizsample0006name(String ibizsample0006name) {
this.ibizsample0006name = ibizsample0006name ;
this.modify("ibizsample0006name",ibizsample0006name);
this.ibizsample0006name = ibizsample0006name;
this.modify("ibizsample0006name", ibizsample0006name);
}
/**
* 设置 [工作流步骤]
*/
public void setWfstate(Integer wfstate) {
this.wfstate = wfstate ;
this.modify("wfstate",wfstate);
this.wfstate = wfstate;
this.modify("wfstate", wfstate);
}
/**
* 设置 [工作流版本]
*/
public void setWfversion(String wfversion) {
this.wfversion = wfversion ;
this.modify("wfversion",wfversion);
this.wfversion = wfversion;
this.modify("wfversion", wfversion);
}
/**
* 设置 [流程步骤]
*/
public void setWfstep(String wfstep) {
this.wfstep = wfstep ;
this.modify("wfstep",wfstep);
this.wfstep = wfstep;
this.modify("wfstep", wfstep);
}
/**
* 设置 [正文]
*/
public void setDtext(String dtext) {
this.dtext = dtext ;
this.modify("dtext",dtext);
this.dtext = dtext;
this.modify("dtext", dtext);
}
......@@ -275,7 +275,7 @@ public class IBIZSample0006 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0006id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0007",resultMap = "IBIZSample0007ResultMap")
@TableName(value = "T_IBIZSAMPLE0007", resultMap = "IBIZSample0007ResultMap")
public class IBIZSample0007 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZSample0007 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -56,7 +56,7 @@ public class IBIZSample0007 extends EntityMP implements Serializable {
* 嵌套流程(子)标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0007id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0007id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0007id")
@JsonProperty("ibizsample0007id")
private String ibizsample0007id;
......@@ -108,7 +108,7 @@ public class IBIZSample0007 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -138,7 +138,7 @@ public class IBIZSample0007 extends EntityMP implements Serializable {
* 公文时间
*/
@TableField(exist = false)
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh", timezone = "GMT+8")
@JSONField(name = "ddate", format = "yyyy-MM-dd")
@JsonProperty("ddate")
private Timestamp ddate;
......@@ -178,56 +178,56 @@ public class IBIZSample0007 extends EntityMP implements Serializable {
* 设置 [工作流版本]
*/
public void setWfversion(String wfversion) {
this.wfversion = wfversion ;
this.modify("wfversion",wfversion);
this.wfversion = wfversion;
this.modify("wfversion", wfversion);
}
/**
* 设置 [公文名称]
*/
public void setIbizsample0007name(String ibizsample0007name) {
this.ibizsample0007name = ibizsample0007name ;
this.modify("ibizsample0007name",ibizsample0007name);
this.ibizsample0007name = ibizsample0007name;
this.modify("ibizsample0007name", ibizsample0007name);
}
/**
* 设置 [工作流步骤]
*/
public void setWfstate(Integer wfstate) {
this.wfstate = wfstate ;
this.modify("wfstate",wfstate);
this.wfstate = wfstate;
this.modify("wfstate", wfstate);
}
/**
* 设置 [业务状态]
*/
public void setYwstate(String ywstate) {
this.ywstate = ywstate ;
this.modify("ywstate",ywstate);
this.ywstate = ywstate;
this.modify("ywstate", ywstate);
}
/**
* 设置 [工作流实例]
*/
public void setWfinstanceid(String wfinstanceid) {
this.wfinstanceid = wfinstanceid ;
this.modify("wfinstanceid",wfinstanceid);
this.wfinstanceid = wfinstanceid;
this.modify("wfinstanceid", wfinstanceid);
}
/**
* 设置 [会签步骤]
*/
public void setWfstep(String wfstep) {
this.wfstep = wfstep ;
this.modify("wfstep",wfstep);
this.wfstep = wfstep;
this.modify("wfstep", wfstep);
}
/**
* 设置 [嵌套流程(主)标识]
*/
public void setIbizsample0006id(String ibizsample0006id) {
this.ibizsample0006id = ibizsample0006id ;
this.modify("ibizsample0006id",ibizsample0006id);
this.ibizsample0006id = ibizsample0006id;
this.modify("ibizsample0006id", ibizsample0006id);
}
......@@ -241,7 +241,7 @@ public class IBIZSample0007 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0007id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0008",resultMap = "IBIZSample0008ResultMap")
@TableName(value = "T_IBIZSAMPLE0008", resultMap = "IBIZSample0008ResultMap")
public class IBIZSample0008 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -55,7 +55,7 @@ public class IBIZSample0008 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -70,7 +70,7 @@ public class IBIZSample0008 extends EntityMP implements Serializable {
* 自循环流程标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0008id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0008id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0008id")
@JsonProperty("ibizsample0008id")
private String ibizsample0008id;
......@@ -116,7 +116,7 @@ public class IBIZSample0008 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -141,56 +141,56 @@ public class IBIZSample0008 extends EntityMP implements Serializable {
* 设置 [自循环步骤]
*/
public void setWfstep(String wfstep) {
this.wfstep = wfstep ;
this.modify("wfstep",wfstep);
this.wfstep = wfstep;
this.modify("wfstep", wfstep);
}
/**
* 设置 [业务状态]
*/
public void setYwstate(String ywstate) {
this.ywstate = ywstate ;
this.modify("ywstate",ywstate);
this.ywstate = ywstate;
this.modify("ywstate", ywstate);
}
/**
* 设置 [工作流版本]
*/
public void setWfversion(String wfversion) {
this.wfversion = wfversion ;
this.modify("wfversion",wfversion);
this.wfversion = wfversion;
this.modify("wfversion", wfversion);
}
/**
* 设置 [工作流步骤]
*/
public void setWfstate(Integer wfstate) {
this.wfstate = wfstate ;
this.modify("wfstate",wfstate);
this.wfstate = wfstate;
this.modify("wfstate", wfstate);
}
/**
* 设置 [下一步处理人]
*/
public void setNextperson(String nextperson) {
this.nextperson = nextperson ;
this.modify("nextperson",nextperson);
this.nextperson = nextperson;
this.modify("nextperson", nextperson);
}
/**
* 设置 [工作流实例]
*/
public void setWfinstanceid(String wfinstanceid) {
this.wfinstanceid = wfinstanceid ;
this.modify("wfinstanceid",wfinstanceid);
this.wfinstanceid = wfinstanceid;
this.modify("wfinstanceid", wfinstanceid);
}
/**
* 设置 [自循环流程名称]
*/
public void setIbizsample0008name(String ibizsample0008name) {
this.ibizsample0008name = ibizsample0008name ;
this.modify("ibizsample0008name",ibizsample0008name);
this.ibizsample0008name = ibizsample0008name;
this.modify("ibizsample0008name", ibizsample0008name);
}
......@@ -204,7 +204,7 @@ public class IBIZSample0008 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0008id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0009",resultMap = "IBIZSample0009ResultMap")
@TableName(value = "T_IBIZSAMPLE0009", resultMap = "IBIZSample0009ResultMap")
public class IBIZSample0009 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZSample0009 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -56,7 +56,7 @@ public class IBIZSample0009 extends EntityMP implements Serializable {
* 日期
*/
@TableField(value = "date")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh", timezone = "GMT+8")
@JSONField(name = "date", format = "yyyy-MM-dd")
@JsonProperty("date")
private Timestamp date;
......@@ -86,7 +86,7 @@ public class IBIZSample0009 extends EntityMP implements Serializable {
* 商品价格明细标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0009id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0009id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0009id")
@JsonProperty("ibizsample0009id")
private String ibizsample0009id;
......@@ -95,7 +95,7 @@ public class IBIZSample0009 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -149,8 +149,8 @@ public class IBIZSample0009 extends EntityMP implements Serializable {
* 设置 [日期]
*/
public void setDate(Timestamp date) {
this.date = date ;
this.modify("date",date);
this.date = date;
this.modify("date", date);
}
/**
......@@ -167,48 +167,48 @@ public class IBIZSample0009 extends EntityMP implements Serializable {
* 设置 [收盘]
*/
public void setSp(BigDecimal sp) {
this.sp = sp ;
this.modify("sp",sp);
this.sp = sp;
this.modify("sp", sp);
}
/**
* 设置 [商品价格明细名称]
*/
public void setIbizsample0009name(String ibizsample0009name) {
this.ibizsample0009name = ibizsample0009name ;
this.modify("ibizsample0009name",ibizsample0009name);
this.ibizsample0009name = ibizsample0009name;
this.modify("ibizsample0009name", ibizsample0009name);
}
/**
* 设置 [商品名称]
*/
public void setSpmc(String spmc) {
this.spmc = spmc ;
this.modify("spmc",spmc);
this.spmc = spmc;
this.modify("spmc", spmc);
}
/**
* 设置 [盘低]
*/
public void setPd(BigDecimal pd) {
this.pd = pd ;
this.modify("pd",pd);
this.pd = pd;
this.modify("pd", pd);
}
/**
* 设置 [盘高]
*/
public void setPg(BigDecimal pg) {
this.pg = pg ;
this.modify("pg",pg);
this.pg = pg;
this.modify("pg", pg);
}
/**
* 设置 [开盘]
*/
public void setKp(BigDecimal kp) {
this.kp = kp ;
this.modify("kp",kp);
this.kp = kp;
this.modify("kp", kp);
}
......@@ -222,7 +222,7 @@ public class IBIZSample0009 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0009id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0010",resultMap = "IBIZSample0010ResultMap")
@TableName(value = "T_IBIZSAMPLE0010", resultMap = "IBIZSample0010ResultMap")
public class IBIZSample0010 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -63,7 +63,7 @@ public class IBIZSample0010 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -94,7 +94,7 @@ public class IBIZSample0010 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -110,7 +110,7 @@ public class IBIZSample0010 extends EntityMP implements Serializable {
* 订单时间
*/
@TableField(value = "ordertime")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh", timezone = "GMT+8")
@JSONField(name = "ordertime", format = "yyyy-MM-dd")
@JsonProperty("ordertime")
private Timestamp ordertime;
......@@ -118,7 +118,7 @@ public class IBIZSample0010 extends EntityMP implements Serializable {
* 订单标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0010id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0010id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0010id")
@JsonProperty("ibizsample0010id")
private String ibizsample0010id;
......@@ -129,40 +129,40 @@ public class IBIZSample0010 extends EntityMP implements Serializable {
* 设置 [订单类型]
*/
public void setOrdertype(String ordertype) {
this.ordertype = ordertype ;
this.modify("ordertype",ordertype);
this.ordertype = ordertype;
this.modify("ordertype", ordertype);
}
/**
* 设置 [备注]
*/
public void setMemo(String memo) {
this.memo = memo ;
this.modify("memo",memo);
this.memo = memo;
this.modify("memo", memo);
}
/**
* 设置 [订单名称]
*/
public void setIbizsample0010name(String ibizsample0010name) {
this.ibizsample0010name = ibizsample0010name ;
this.modify("ibizsample0010name",ibizsample0010name);
this.ibizsample0010name = ibizsample0010name;
this.modify("ibizsample0010name", ibizsample0010name);
}
/**
* 设置 [订单编号]
*/
public void setOrderuid(String orderuid) {
this.orderuid = orderuid ;
this.modify("orderuid",orderuid);
this.orderuid = orderuid;
this.modify("orderuid", orderuid);
}
/**
* 设置 [订单时间]
*/
public void setOrdertime(Timestamp ordertime) {
this.ordertime = ordertime ;
this.modify("ordertime",ordertime);
this.ordertime = ordertime;
this.modify("ordertime", ordertime);
}
/**
......@@ -186,7 +186,7 @@ public class IBIZSample0010 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0010id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0011",resultMap = "IBIZSample0011ResultMap")
@TableName(value = "T_IBIZSAMPLE0011", resultMap = "IBIZSample0011ResultMap")
public class IBIZSample0011 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -62,7 +62,7 @@ public class IBIZSample0011 extends EntityMP implements Serializable {
* 订单明细标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0011id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0011id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0011id")
@JsonProperty("ibizsample0011id")
private String ibizsample0011id;
......@@ -71,7 +71,7 @@ public class IBIZSample0011 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -88,7 +88,7 @@ public class IBIZSample0011 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -171,32 +171,32 @@ public class IBIZSample0011 extends EntityMP implements Serializable {
* 设置 [数量]
*/
public void setQuantity(Integer quantity) {
this.quantity = quantity ;
this.modify("quantity",quantity);
this.quantity = quantity;
this.modify("quantity", quantity);
}
/**
* 设置 [订单明细名称]
*/
public void setIbizsample0011name(String ibizsample0011name) {
this.ibizsample0011name = ibizsample0011name ;
this.modify("ibizsample0011name",ibizsample0011name);
this.ibizsample0011name = ibizsample0011name;
this.modify("ibizsample0011name", ibizsample0011name);
}
/**
* 设置 [订单标识]
*/
public void setIbizsample0010id(String ibizsample0010id) {
this.ibizsample0010id = ibizsample0010id ;
this.modify("ibizsample0010id",ibizsample0010id);
this.ibizsample0010id = ibizsample0010id;
this.modify("ibizsample0010id", ibizsample0010id);
}
/**
* 设置 [统一产品标识]
*/
public void setIbizuniproductid(String ibizuniproductid) {
this.ibizuniproductid = ibizuniproductid ;
this.modify("ibizuniproductid",ibizuniproductid);
this.ibizuniproductid = ibizuniproductid;
this.modify("ibizuniproductid", ibizuniproductid);
}
......@@ -210,7 +210,7 @@ public class IBIZSample0011 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0011id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0012",resultMap = "IBIZSample0012ResultMap")
@TableName(value = "T_IBIZSAMPLE0012", resultMap = "IBIZSample0012ResultMap")
public class IBIZSample0012 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZSample0012 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -56,7 +56,7 @@ public class IBIZSample0012 extends EntityMP implements Serializable {
* 订单标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0012id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0012id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0012id")
@JsonProperty("ibizsample0012id")
private String ibizsample0012id;
......@@ -72,7 +72,7 @@ public class IBIZSample0012 extends EntityMP implements Serializable {
* 订单时间
*/
@TableField(value = "ordertime")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh", timezone = "GMT+8")
@JSONField(name = "ordertime", format = "yyyy-MM-dd")
@JsonProperty("ordertime")
private Timestamp ordertime;
......@@ -89,7 +89,7 @@ public class IBIZSample0012 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -129,16 +129,16 @@ public class IBIZSample0012 extends EntityMP implements Serializable {
* 设置 [订单编号]
*/
public void setOrderuid(String orderuid) {
this.orderuid = orderuid ;
this.modify("orderuid",orderuid);
this.orderuid = orderuid;
this.modify("orderuid", orderuid);
}
/**
* 设置 [订单时间]
*/
public void setOrdertime(Timestamp ordertime) {
this.ordertime = ordertime ;
this.modify("ordertime",ordertime);
this.ordertime = ordertime;
this.modify("ordertime", ordertime);
}
/**
......@@ -155,24 +155,24 @@ public class IBIZSample0012 extends EntityMP implements Serializable {
* 设置 [备注]
*/
public void setMemo(String memo) {
this.memo = memo ;
this.modify("memo",memo);
this.memo = memo;
this.modify("memo", memo);
}
/**
* 设置 [订单名称]
*/
public void setIbizsample0012name(String ibizsample0012name) {
this.ibizsample0012name = ibizsample0012name ;
this.modify("ibizsample0012name",ibizsample0012name);
this.ibizsample0012name = ibizsample0012name;
this.modify("ibizsample0012name", ibizsample0012name);
}
/**
* 设置 [订单类型]
*/
public void setOrdertype(String ordertype) {
this.ordertype = ordertype ;
this.modify("ordertype",ordertype);
this.ordertype = ordertype;
this.modify("ordertype", ordertype);
}
......@@ -186,7 +186,7 @@ public class IBIZSample0012 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0012id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0013",resultMap = "IBIZSample0013ResultMap")
@TableName(value = "T_IBIZSAMPLE0013", resultMap = "IBIZSample0013ResultMap")
public class IBIZSample0013 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -63,7 +63,7 @@ public class IBIZSample0013 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -80,7 +80,7 @@ public class IBIZSample0013 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -102,7 +102,7 @@ public class IBIZSample0013 extends EntityMP implements Serializable {
* 订单明细标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0013id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0013id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0013id")
@JsonProperty("ibizsample0013id")
private String ibizsample0013id;
......@@ -171,32 +171,32 @@ public class IBIZSample0013 extends EntityMP implements Serializable {
* 设置 [订单明细名称]
*/
public void setIbizsample0013name(String ibizsample0013name) {
this.ibizsample0013name = ibizsample0013name ;
this.modify("ibizsample0013name",ibizsample0013name);
this.ibizsample0013name = ibizsample0013name;
this.modify("ibizsample0013name", ibizsample0013name);
}
/**
* 设置 [数量]
*/
public void setQuantity(Integer quantity) {
this.quantity = quantity ;
this.modify("quantity",quantity);
this.quantity = quantity;
this.modify("quantity", quantity);
}
/**
* 设置 [统一产品标识]
*/
public void setIbizuniproductid(String ibizuniproductid) {
this.ibizuniproductid = ibizuniproductid ;
this.modify("ibizuniproductid",ibizuniproductid);
this.ibizuniproductid = ibizuniproductid;
this.modify("ibizuniproductid", ibizuniproductid);
}
/**
* 设置 [订单标识]
*/
public void setIbizsample0012id(String ibizsample0012id) {
this.ibizsample0012id = ibizsample0012id ;
this.modify("ibizsample0012id",ibizsample0012id);
this.ibizsample0012id = ibizsample0012id;
this.modify("ibizsample0012id", ibizsample0012id);
}
......@@ -210,7 +210,7 @@ public class IBIZSample0013 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0013id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0014",resultMap = "IBIZSample0014ResultMap")
@TableName(value = "T_IBIZSAMPLE0014", resultMap = "IBIZSample0014ResultMap")
public class IBIZSample0014 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -54,7 +54,7 @@ public class IBIZSample0014 extends EntityMP implements Serializable {
* 员工标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0014id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0014id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0014id")
@JsonProperty("ibizsample0014id")
private String ibizsample0014id;
......@@ -70,7 +70,7 @@ public class IBIZSample0014 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -79,7 +79,7 @@ public class IBIZSample0014 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -128,24 +128,24 @@ public class IBIZSample0014 extends EntityMP implements Serializable {
* 设置 [员工名称]
*/
public void setIbizsample0014name(String ibizsample0014name) {
this.ibizsample0014name = ibizsample0014name ;
this.modify("ibizsample0014name",ibizsample0014name);
this.ibizsample0014name = ibizsample0014name;
this.modify("ibizsample0014name", ibizsample0014name);
}
/**
* 设置 [员工编号]
*/
public void setSn(String sn) {
this.sn = sn ;
this.modify("sn",sn);
this.sn = sn;
this.modify("sn", sn);
}
/**
* 设置 [IBIZSAMPLE0003标识]
*/
public void setIbizsample0003id(String ibizsample0003id) {
this.ibizsample0003id = ibizsample0003id ;
this.modify("ibizsample0003id",ibizsample0003id);
this.ibizsample0003id = ibizsample0003id;
this.modify("ibizsample0003id", ibizsample0003id);
}
......@@ -159,7 +159,7 @@ public class IBIZSample0014 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0014id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0015",resultMap = "IBIZSample0015ResultMap")
@TableName(value = "T_IBIZSAMPLE0015", resultMap = "IBIZSample0015ResultMap")
public class IBIZSample0015 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZSample0015 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -86,7 +86,7 @@ public class IBIZSample0015 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -102,7 +102,7 @@ public class IBIZSample0015 extends EntityMP implements Serializable {
* 项目标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0015id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0015id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0015id")
@JsonProperty("ibizsample0015id")
private String ibizsample0015id;
......@@ -113,24 +113,24 @@ public class IBIZSample0015 extends EntityMP implements Serializable {
* 设置 [项目内容]
*/
public void setContent(String content) {
this.content = content ;
this.modify("content",content);
this.content = content;
this.modify("content", content);
}
/**
* 设置 [项目名称]
*/
public void setIbizsample0015name(String ibizsample0015name) {
this.ibizsample0015name = ibizsample0015name ;
this.modify("ibizsample0015name",ibizsample0015name);
this.ibizsample0015name = ibizsample0015name;
this.modify("ibizsample0015name", ibizsample0015name);
}
/**
* 设置 [项目编号]
*/
public void setSn(String sn) {
this.sn = sn ;
this.modify("sn",sn);
this.sn = sn;
this.modify("sn", sn);
}
......@@ -144,7 +144,7 @@ public class IBIZSample0015 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0015id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0016",resultMap = "IBIZSample0016ResultMap")
@TableName(value = "T_IBIZSAMPLE0016", resultMap = "IBIZSample0016ResultMap")
public class IBIZSample0016 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -56,7 +56,7 @@ public class IBIZSample0016 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -72,7 +72,7 @@ public class IBIZSample0016 extends EntityMP implements Serializable {
* 项目成员标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0016id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0016id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0016id")
@JsonProperty("ibizsample0016id")
private String ibizsample0016id;
......@@ -81,7 +81,7 @@ public class IBIZSample0016 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -143,24 +143,24 @@ public class IBIZSample0016 extends EntityMP implements Serializable {
* 设置 [项目成员名称]
*/
public void setIbizsample0016name(String ibizsample0016name) {
this.ibizsample0016name = ibizsample0016name ;
this.modify("ibizsample0016name",ibizsample0016name);
this.ibizsample0016name = ibizsample0016name;
this.modify("ibizsample0016name", ibizsample0016name);
}
/**
* 设置 [项目标识]
*/
public void setIbizsample0015id(String ibizsample0015id) {
this.ibizsample0015id = ibizsample0015id ;
this.modify("ibizsample0015id",ibizsample0015id);
this.ibizsample0015id = ibizsample0015id;
this.modify("ibizsample0015id", ibizsample0015id);
}
/**
* 设置 [员工标识]
*/
public void setIbizsample0014id(String ibizsample0014id) {
this.ibizsample0014id = ibizsample0014id ;
this.modify("ibizsample0014id",ibizsample0014id);
this.ibizsample0014id = ibizsample0014id;
this.modify("ibizsample0014id", ibizsample0014id);
}
......@@ -174,7 +174,7 @@ public class IBIZSample0016 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0016id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0017",resultMap = "IBIZSample0017ResultMap")
@TableName(value = "T_IBIZSAMPLE0017", resultMap = "IBIZSample0017ResultMap")
public class IBIZSample0017 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -76,7 +76,7 @@ public class IBIZSample0017 extends EntityMP implements Serializable {
* 订单时间
*/
@TableField(value = "ordertime")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd", locale = "zh", timezone = "GMT+8")
@JSONField(name = "ordertime", format = "yyyy-MM-dd")
@JsonProperty("ordertime")
private Timestamp ordertime;
......@@ -100,7 +100,7 @@ public class IBIZSample0017 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -109,7 +109,7 @@ public class IBIZSample0017 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -124,7 +124,7 @@ public class IBIZSample0017 extends EntityMP implements Serializable {
* 订单标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0017id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0017id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0017id")
@JsonProperty("ibizsample0017id")
private String ibizsample0017id;
......@@ -143,40 +143,40 @@ public class IBIZSample0017 extends EntityMP implements Serializable {
* 设置 [订单编号]
*/
public void setOrderuid(String orderuid) {
this.orderuid = orderuid ;
this.modify("orderuid",orderuid);
this.orderuid = orderuid;
this.modify("orderuid", orderuid);
}
/**
* 设置 [备注]
*/
public void setMemo(String memo) {
this.memo = memo ;
this.modify("memo",memo);
this.memo = memo;
this.modify("memo", memo);
}
/**
* 设置 [明细数]
*/
public void setDetailnum(Integer detailnum) {
this.detailnum = detailnum ;
this.modify("detailnum",detailnum);
this.detailnum = detailnum;
this.modify("detailnum", detailnum);
}
/**
* 设置 [总计]
*/
public void setAmount(Double amount) {
this.amount = amount ;
this.modify("amount",amount);
this.amount = amount;
this.modify("amount", amount);
}
/**
* 设置 [订单时间]
*/
public void setOrdertime(Timestamp ordertime) {
this.ordertime = ordertime ;
this.modify("ordertime",ordertime);
this.ordertime = ordertime;
this.modify("ordertime", ordertime);
}
/**
......@@ -193,16 +193,16 @@ public class IBIZSample0017 extends EntityMP implements Serializable {
* 设置 [订单名称]
*/
public void setIbizsample0017name(String ibizsample0017name) {
this.ibizsample0017name = ibizsample0017name ;
this.modify("ibizsample0017name",ibizsample0017name);
this.ibizsample0017name = ibizsample0017name;
this.modify("ibizsample0017name", ibizsample0017name);
}
/**
* 设置 [订单类型]
*/
public void setOrdertype(String ordertype) {
this.ordertype = ordertype ;
this.modify("ordertype",ordertype);
this.ordertype = ordertype;
this.modify("ordertype", ordertype);
}
......@@ -216,7 +216,7 @@ public class IBIZSample0017 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0017id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0018",resultMap = "IBIZSample0018ResultMap")
@TableName(value = "T_IBIZSAMPLE0018", resultMap = "IBIZSample0018ResultMap")
public class IBIZSample0018 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -55,7 +55,7 @@ public class IBIZSample0018 extends EntityMP implements Serializable {
* 示例实体04标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0018id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0018id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0018id")
@JsonProperty("ibizsample0018id")
private String ibizsample0018id;
......@@ -71,7 +71,7 @@ public class IBIZSample0018 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -88,7 +88,7 @@ public class IBIZSample0018 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -120,32 +120,32 @@ public class IBIZSample0018 extends EntityMP implements Serializable {
* 设置 [序号]
*/
public void setSn(Integer sn) {
this.sn = sn ;
this.modify("sn",sn);
this.sn = sn;
this.modify("sn", sn);
}
/**
* 设置 [示例实体04名称]
*/
public void setIbizsample0018name(String ibizsample0018name) {
this.ibizsample0018name = ibizsample0018name ;
this.modify("ibizsample0018name",ibizsample0018name);
this.ibizsample0018name = ibizsample0018name;
this.modify("ibizsample0018name", ibizsample0018name);
}
/**
* 设置 [图片]
*/
public void setImage(String image) {
this.image = image ;
this.modify("image",image);
this.image = image;
this.modify("image", image);
}
/**
* 设置 [描述]
*/
public void setDescription(String description) {
this.description = description ;
this.modify("description",description);
this.description = description;
this.modify("description", description);
}
......@@ -159,7 +159,7 @@ public class IBIZSample0018 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0018id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0019",resultMap = "IBIZSample0019ResultMap")
@TableName(value = "T_IBIZSAMPLE0019", resultMap = "IBIZSample0019ResultMap")
public class IBIZSample0019 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -48,7 +48,7 @@ public class IBIZSample0019 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -72,7 +72,7 @@ public class IBIZSample0019 extends EntityMP implements Serializable {
* 部门标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0019id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0019id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0019id")
@JsonProperty("ibizsample0019id")
private String ibizsample0019id;
......@@ -81,7 +81,7 @@ public class IBIZSample0019 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -99,8 +99,8 @@ public class IBIZSample0019 extends EntityMP implements Serializable {
* 设置 [部门名称]
*/
public void setIbizsample0019name(String ibizsample0019name) {
this.ibizsample0019name = ibizsample0019name ;
this.modify("ibizsample0019name",ibizsample0019name);
this.ibizsample0019name = ibizsample0019name;
this.modify("ibizsample0019name", ibizsample0019name);
}
......@@ -114,7 +114,7 @@ public class IBIZSample0019 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0019id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSAMPLE0020",resultMap = "IBIZSample0020ResultMap")
@TableName(value = "T_IBIZSAMPLE0020", resultMap = "IBIZSample0020ResultMap")
public class IBIZSample0020 extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -55,7 +55,7 @@ public class IBIZSample0020 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -63,7 +63,7 @@ public class IBIZSample0020 extends EntityMP implements Serializable {
* 员工标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsample0020id",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsample0020id", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsample0020id")
@JsonProperty("ibizsample0020id")
private String ibizsample0020id;
......@@ -72,7 +72,7 @@ public class IBIZSample0020 extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -121,24 +121,24 @@ public class IBIZSample0020 extends EntityMP implements Serializable {
* 设置 [员工名称]
*/
public void setIbizsample0020name(String ibizsample0020name) {
this.ibizsample0020name = ibizsample0020name ;
this.modify("ibizsample0020name",ibizsample0020name);
this.ibizsample0020name = ibizsample0020name;
this.modify("ibizsample0020name", ibizsample0020name);
}
/**
* 设置 [部门名称]
*/
public void setIbizsample0019name(String ibizsample0019name) {
this.ibizsample0019name = ibizsample0019name ;
this.modify("ibizsample0019name",ibizsample0019name);
this.ibizsample0019name = ibizsample0019name;
this.modify("ibizsample0019name", ibizsample0019name);
}
/**
* 设置 [部门id]
*/
public void setIbizsample0019id(String ibizsample0019id) {
this.ibizsample0019id = ibizsample0019id ;
this.modify("ibizsample0019id",ibizsample0019id);
this.ibizsample0019id = ibizsample0019id;
this.modify("ibizsample0019id", ibizsample0019id);
}
......@@ -152,7 +152,7 @@ public class IBIZSample0020 extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsample0020id");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSOFTWARESUIT",resultMap = "IBIZSoftwareSuitResultMap")
@TableName(value = "T_IBIZSOFTWARESUIT", resultMap = "IBIZSoftwareSuitResultMap")
public class IBIZSoftwareSuit extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -56,7 +56,7 @@ public class IBIZSoftwareSuit extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -64,7 +64,7 @@ public class IBIZSoftwareSuit extends EntityMP implements Serializable {
* 软件标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizsoftwaresuitid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizsoftwaresuitid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizsoftwaresuitid")
@JsonProperty("ibizsoftwaresuitid")
private String ibizsoftwaresuitid;
......@@ -88,7 +88,7 @@ public class IBIZSoftwareSuit extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -99,8 +99,8 @@ public class IBIZSoftwareSuit extends EntityMP implements Serializable {
* 设置 [软件名称]
*/
public void setIbizsoftwaresuitname(String ibizsoftwaresuitname) {
this.ibizsoftwaresuitname = ibizsoftwaresuitname ;
this.modify("ibizsoftwaresuitname",ibizsoftwaresuitname);
this.ibizsoftwaresuitname = ibizsoftwaresuitname;
this.modify("ibizsoftwaresuitname", ibizsoftwaresuitname);
}
......@@ -114,7 +114,7 @@ public class IBIZSoftwareSuit extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizsoftwaresuitid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZSTORAGE",resultMap = "IBIZStorageResultMap")
@TableName(value = "T_IBIZSTORAGE", resultMap = "IBIZStorageResultMap")
public class IBIZStorage extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -47,7 +47,7 @@ public class IBIZStorage extends EntityMP implements Serializable {
* 存储标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizstorageid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizstorageid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizstorageid")
@JsonProperty("ibizstorageid")
private String ibizstorageid;
......@@ -93,7 +93,7 @@ public class IBIZStorage extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -123,7 +123,7 @@ public class IBIZStorage extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -134,8 +134,8 @@ public class IBIZStorage extends EntityMP implements Serializable {
* 设置 [存储名称]
*/
public void setIbizstoragename(String ibizstoragename) {
this.ibizstoragename = ibizstoragename ;
this.modify("ibizstoragename",ibizstoragename);
this.ibizstoragename = ibizstoragename;
this.modify("ibizstoragename", ibizstoragename);
}
......@@ -149,7 +149,7 @@ public class IBIZStorage extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizstorageid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "t_supplier",resultMap = "IBIZSupplierResultMap")
@TableName(value = "t_supplier", resultMap = "IBIZSupplierResultMap")
public class IBIZSupplier extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -47,7 +47,7 @@ public class IBIZSupplier extends EntityMP implements Serializable {
* 是否删除标记
*/
@DEField(preType = DEPredefinedFieldType.LOGICVALID, logicval = "Y", logicdelval = "N")
@TableLogic(value= "Y", delval = "N")
@TableLogic(value = "Y", delval = "N")
@TableField(value = "deleteflag")
@JSONField(name = "deleteflag")
@JsonProperty("deleteflag")
......@@ -73,7 +73,7 @@ public class IBIZSupplier extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatetime")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatetime", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatetime")
private Timestamp updatetime;
......@@ -96,7 +96,7 @@ public class IBIZSupplier extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createtime", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createtime", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createtime")
private Timestamp createtime;
......@@ -111,7 +111,7 @@ public class IBIZSupplier extends EntityMP implements Serializable {
* 供应商标识
*/
@DEField(isKeyField = true)
@TableId(value= "supplierid",type=IdType.ASSIGN_UUID)
@TableId(value = "supplierid", type = IdType.ASSIGN_UUID)
@JSONField(name = "supplierid")
@JsonProperty("supplierid")
private String supplierid;
......@@ -122,24 +122,24 @@ public class IBIZSupplier extends EntityMP implements Serializable {
* 设置 [邮箱]
*/
public void setEmail(String email) {
this.email = email ;
this.modify("email",email);
this.email = email;
this.modify("email", email);
}
/**
* 设置 [供应商名称]
*/
public void setSuppliername(String suppliername) {
this.suppliername = suppliername ;
this.modify("suppliername",suppliername);
this.suppliername = suppliername;
this.modify("suppliername", suppliername);
}
/**
* 设置 [地址]
*/
public void setAddress(String address) {
this.address = address ;
this.modify("address",address);
this.address = address;
this.modify("address", address);
}
......@@ -153,7 +153,7 @@ public class IBIZSupplier extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("supplierid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZUNIPRODUCT",resultMap = "IBIZUNIProductResultMap")
@TableName(value = "T_IBIZUNIPRODUCT", resultMap = "IBIZUNIProductResultMap")
public class IBIZUNIProduct extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -62,7 +62,7 @@ public class IBIZUNIProduct extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -93,7 +93,7 @@ public class IBIZUNIProduct extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -109,7 +109,7 @@ public class IBIZUNIProduct extends EntityMP implements Serializable {
* 统一产品标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizuniproductid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizuniproductid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizuniproductid")
@JsonProperty("ibizuniproductid")
private String ibizuniproductid;
......@@ -120,32 +120,32 @@ public class IBIZUNIProduct extends EntityMP implements Serializable {
* 设置 [单价]
*/
public void setUnitprice(Double unitprice) {
this.unitprice = unitprice ;
this.modify("unitprice",unitprice);
this.unitprice = unitprice;
this.modify("unitprice", unitprice);
}
/**
* 设置 [产品名称]
*/
public void setIbizuniproductname(String ibizuniproductname) {
this.ibizuniproductname = ibizuniproductname ;
this.modify("ibizuniproductname",ibizuniproductname);
this.ibizuniproductname = ibizuniproductname;
this.modify("ibizuniproductname", ibizuniproductname);
}
/**
* 设置 [单位]
*/
public void setUnit(String unit) {
this.unit = unit ;
this.modify("unit",unit);
this.unit = unit;
this.modify("unit", unit);
}
/**
* 设置 [分组类型]
*/
public void setIbizuniproducttype(String ibizuniproducttype) {
this.ibizuniproducttype = ibizuniproducttype ;
this.modify("ibizuniproducttype",ibizuniproducttype);
this.ibizuniproducttype = ibizuniproducttype;
this.modify("ibizuniproducttype", ibizuniproducttype);
}
......@@ -159,7 +159,7 @@ public class IBIZUNIProduct extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizuniproductid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -38,7 +38,7 @@ import com.baomidou.mybatisplus.core.toolkit.IdWorker;
@Setter
@NoArgsConstructor
@JsonIgnoreProperties(value = "handler")
@TableName(value = "T_IBIZVIEWMSG",resultMap = "IBIZViewMsgResultMap")
@TableName(value = "T_IBIZVIEWMSG", resultMap = "IBIZViewMsgResultMap")
public class IBIZViewMsg extends EntityMP implements Serializable {
private static final long serialVersionUID = 1L;
......@@ -47,7 +47,7 @@ public class IBIZViewMsg extends EntityMP implements Serializable {
* 视图消息源标识
*/
@DEField(isKeyField = true)
@TableId(value= "ibizviewmsgid",type=IdType.ASSIGN_UUID)
@TableId(value = "ibizviewmsgid", type = IdType.ASSIGN_UUID)
@JSONField(name = "ibizviewmsgid")
@JsonProperty("ibizviewmsgid")
private String ibizviewmsgid;
......@@ -56,7 +56,7 @@ public class IBIZViewMsg extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.CREATEDATE)
@TableField(value = "createdate", fill = FieldFill.INSERT)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "createdate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -88,7 +88,7 @@ public class IBIZViewMsg extends EntityMP implements Serializable {
*/
@DEField(preType = DEPredefinedFieldType.UPDATEDATE)
@TableField(value = "updatedate")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh" , timezone = "GMT+8")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", locale = "zh", timezone = "GMT+8")
@JSONField(name = "updatedate", format = "yyyy-MM-dd HH:mm:ss")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -99,8 +99,8 @@ public class IBIZViewMsg extends EntityMP implements Serializable {
* 设置 [视图消息源名称]
*/
public void setIbizviewmsgname(String ibizviewmsgname) {
this.ibizviewmsgname = ibizviewmsgname ;
this.modify("ibizviewmsgname",ibizviewmsgname);
this.ibizviewmsgname = ibizviewmsgname;
this.modify("ibizviewmsgname", ibizviewmsgname);
}
......@@ -114,7 +114,7 @@ public class IBIZViewMsg extends EntityMP implements Serializable {
@Override
public <T> T copyTo(T targetEntity, boolean bIncEmpty) {
this.reset("ibizviewmsgid");
return super.copyTo(targetEntity,bIncEmpty);
return super.copyTo(targetEntity, bIncEmpty);
}
}
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZAccountMapper extends BaseMapper<IBIZAccount>{
public interface IBIZAccountMapper extends BaseMapper<IBIZAccount> {
Page<IBIZAccount> searchDefault(IPage page, @Param("srf") IBIZAccountSearchContext context, @Param("ew") Wrapper<IBIZAccount> wrapper) ;
Page<IBIZAccount> searchDefault(IPage page, @Param("srf") IBIZAccountSearchContext context, @Param("ew") Wrapper<IBIZAccount> wrapper);
@Override
IBIZAccount selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZAccountMapper extends BaseMapper<IBIZAccount>{
int update(@Param(Constants.ENTITY) IBIZAccount entity, @Param("ew") Wrapper<IBIZAccount> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZCPUMapper extends BaseMapper<IBIZCPU>{
public interface IBIZCPUMapper extends BaseMapper<IBIZCPU> {
Page<IBIZCPU> searchDefault(IPage page, @Param("srf") IBIZCPUSearchContext context, @Param("ew") Wrapper<IBIZCPU> wrapper) ;
Page<IBIZCPU> searchDefault(IPage page, @Param("srf") IBIZCPUSearchContext context, @Param("ew") Wrapper<IBIZCPU> wrapper);
@Override
IBIZCPU selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZCPUMapper extends BaseMapper<IBIZCPU>{
int update(@Param(Constants.ENTITY) IBIZCPU entity, @Param("ew") Wrapper<IBIZCPU> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZCustomMapper extends BaseMapper<IBIZCustom>{
public interface IBIZCustomMapper extends BaseMapper<IBIZCustom> {
Page<IBIZCustom> searchDefault(IPage page, @Param("srf") IBIZCustomSearchContext context, @Param("ew") Wrapper<IBIZCustom> wrapper) ;
Page<IBIZCustom> searchDefault(IPage page, @Param("srf") IBIZCustomSearchContext context, @Param("ew") Wrapper<IBIZCustom> wrapper);
@Override
IBIZCustom selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZCustomMapper extends BaseMapper<IBIZCustom>{
int update(@Param(Constants.ENTITY) IBIZCustom entity, @Param("ew") Wrapper<IBIZCustom> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZCustomerMGMapper extends BaseMapper<IBIZCustomerMG>{
public interface IBIZCustomerMGMapper extends BaseMapper<IBIZCustomerMG> {
Page<IBIZCustomerMG> searchDefault(IPage page, @Param("srf") IBIZCustomerMGSearchContext context, @Param("ew") Wrapper<IBIZCustomerMG> wrapper) ;
Page<IBIZCustomerMG> searchDefault(IPage page, @Param("srf") IBIZCustomerMGSearchContext context, @Param("ew") Wrapper<IBIZCustomerMG> wrapper);
@Override
IBIZCustomerMG selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZCustomerMGMapper extends BaseMapper<IBIZCustomerMG>{
int update(@Param(Constants.ENTITY) IBIZCustomerMG entity, @Param("ew") Wrapper<IBIZCustomerMG> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZCustomerMapper extends BaseMapper<IBIZCustomer>{
public interface IBIZCustomerMapper extends BaseMapper<IBIZCustomer> {
Page<IBIZCustomer> searchDefault(IPage page, @Param("srf") IBIZCustomerSearchContext context, @Param("ew") Wrapper<IBIZCustomer> wrapper) ;
Page<IBIZCustomer> searchDefault(IPage page, @Param("srf") IBIZCustomerSearchContext context, @Param("ew") Wrapper<IBIZCustomer> wrapper);
@Override
IBIZCustomer selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZCustomerMapper extends BaseMapper<IBIZCustomer>{
int update(@Param(Constants.ENTITY) IBIZCustomer entity, @Param("ew") Wrapper<IBIZCustomer> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,10 +17,10 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZCustomer_INTFMapper extends BaseMapper<IBIZCustomer_INTF>{
public interface IBIZCustomer_INTFMapper extends BaseMapper<IBIZCustomer_INTF> {
Page<IBIZCustomer_INTF> searchCurCustomer(IPage page, @Param("srf") IBIZCustomer_INTFSearchContext context, @Param("ew") Wrapper<IBIZCustomer_INTF> wrapper) ;
Page<IBIZCustomer_INTF> searchDefault(IPage page, @Param("srf") IBIZCustomer_INTFSearchContext context, @Param("ew") Wrapper<IBIZCustomer_INTF> wrapper) ;
Page<IBIZCustomer_INTF> searchCurCustomer(IPage page, @Param("srf") IBIZCustomer_INTFSearchContext context, @Param("ew") Wrapper<IBIZCustomer_INTF> wrapper);
Page<IBIZCustomer_INTF> searchDefault(IPage page, @Param("srf") IBIZCustomer_INTFSearchContext context, @Param("ew") Wrapper<IBIZCustomer_INTF> wrapper);
@Override
IBIZCustomer_INTF selectById(Serializable id);
@Override
......@@ -31,13 +31,13 @@ public interface IBIZCustomer_INTFMapper extends BaseMapper<IBIZCustomer_INTF>{
int update(@Param(Constants.ENTITY) IBIZCustomer_INTF entity, @Param("ew") Wrapper<IBIZCustomer_INTF> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,10 +17,10 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZHardwareMapper extends BaseMapper<IBIZHardware>{
public interface IBIZHardwareMapper extends BaseMapper<IBIZHardware> {
Page<IBIZHardware> searchDefault(IPage page, @Param("srf") IBIZHardwareSearchContext context, @Param("ew") Wrapper<IBIZHardware> wrapper) ;
Page<IBIZHardware> searchIndexDER(IPage page, @Param("srf") IBIZHardwareSearchContext context, @Param("ew") Wrapper<IBIZHardware> wrapper) ;
Page<IBIZHardware> searchDefault(IPage page, @Param("srf") IBIZHardwareSearchContext context, @Param("ew") Wrapper<IBIZHardware> wrapper);
Page<IBIZHardware> searchIndexDER(IPage page, @Param("srf") IBIZHardwareSearchContext context, @Param("ew") Wrapper<IBIZHardware> wrapper);
@Override
IBIZHardware selectById(Serializable id);
@Override
......@@ -31,13 +31,13 @@ public interface IBIZHardwareMapper extends BaseMapper<IBIZHardware>{
int update(@Param(Constants.ENTITY) IBIZHardware entity, @Param("ew") Wrapper<IBIZHardware> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,12 +17,12 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZOrderDetailMapper extends BaseMapper<IBIZOrderDetail>{
public interface IBIZOrderDetailMapper extends BaseMapper<IBIZOrderDetail> {
Page<IBIZOrderDetail> searchCSMXDY(IPage page, @Param("srf") IBIZOrderDetailSearchContext context, @Param("ew") Wrapper<IBIZOrderDetail> wrapper) ;
Page<IBIZOrderDetail> searchDefault(IPage page, @Param("srf") IBIZOrderDetailSearchContext context, @Param("ew") Wrapper<IBIZOrderDetail> wrapper) ;
Page<IBIZOrderDetail> searchLOGIC_0007(IPage page, @Param("srf") IBIZOrderDetailSearchContext context, @Param("ew") Wrapper<IBIZOrderDetail> wrapper) ;
Page<IBIZOrderDetail> searchX(IPage page, @Param("srf") IBIZOrderDetailSearchContext context, @Param("ew") Wrapper<IBIZOrderDetail> wrapper) ;
Page<IBIZOrderDetail> searchCSMXDY(IPage page, @Param("srf") IBIZOrderDetailSearchContext context, @Param("ew") Wrapper<IBIZOrderDetail> wrapper);
Page<IBIZOrderDetail> searchDefault(IPage page, @Param("srf") IBIZOrderDetailSearchContext context, @Param("ew") Wrapper<IBIZOrderDetail> wrapper);
Page<IBIZOrderDetail> searchLOGIC_0007(IPage page, @Param("srf") IBIZOrderDetailSearchContext context, @Param("ew") Wrapper<IBIZOrderDetail> wrapper);
Page<IBIZOrderDetail> searchX(IPage page, @Param("srf") IBIZOrderDetailSearchContext context, @Param("ew") Wrapper<IBIZOrderDetail> wrapper);
@Override
IBIZOrderDetail selectById(Serializable id);
@Override
......@@ -33,13 +33,13 @@ public interface IBIZOrderDetailMapper extends BaseMapper<IBIZOrderDetail>{
int update(@Param(Constants.ENTITY) IBIZOrderDetail entity, @Param("ew") Wrapper<IBIZOrderDetail> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -65,8 +65,8 @@ public interface IBIZOrderDetailMapper extends BaseMapper<IBIZOrderDetail>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZOrderDetail> selectByIbizorderid(@Param("ibizorderid") Serializable ibizorderid) ;
List<IBIZOrderDetail> selectByIbizorderid(@Param("ibizorderid") Serializable ibizorderid);
List<IBIZOrderDetail> selectByIbizuniproductid(@Param("ibizuniproductid") Serializable ibizuniproductid) ;
List<IBIZOrderDetail> selectByIbizuniproductid(@Param("ibizuniproductid") Serializable ibizuniproductid);
}
......@@ -17,24 +17,24 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZOrderMapper extends BaseMapper<IBIZOrder>{
public interface IBIZOrderMapper extends BaseMapper<IBIZOrder> {
Page<IBIZOrder> searchCSDY(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchCurState30(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchDDJETJBB(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchDDReport(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchDYDDMXSJY(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchDefault(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchEchartsDefaultDataSource(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchGaugeDataSource(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchGaugeDataSourceByTime(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchLOGIC_22(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchRadarDataSource(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchSHZOrder(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchState10(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchState30(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchState40(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchXECX(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper) ;
Page<IBIZOrder> searchCSDY(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchCurState30(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchDDJETJBB(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchDDReport(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchDYDDMXSJY(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchDefault(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchEchartsDefaultDataSource(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchGaugeDataSource(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchGaugeDataSourceByTime(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchLOGIC_22(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchRadarDataSource(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchSHZOrder(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchState10(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchState30(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchState40(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
Page<IBIZOrder> searchXECX(IPage page, @Param("srf") IBIZOrderSearchContext context, @Param("ew") Wrapper<IBIZOrder> wrapper);
@Override
IBIZOrder selectById(Serializable id);
@Override
......@@ -45,13 +45,13 @@ public interface IBIZOrderMapper extends BaseMapper<IBIZOrder>{
int update(@Param(Constants.ENTITY) IBIZOrder entity, @Param("ew") Wrapper<IBIZOrder> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -77,6 +77,6 @@ public interface IBIZOrderMapper extends BaseMapper<IBIZOrder>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZOrder> selectByIbizcustomerid(@Param("ibizcustomerid") Serializable ibizcustomerid) ;
List<IBIZOrder> selectByIbizcustomerid(@Param("ibizcustomerid") Serializable ibizcustomerid);
}
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZOrderTypeMapper extends BaseMapper<IBIZOrderType>{
public interface IBIZOrderTypeMapper extends BaseMapper<IBIZOrderType> {
Page<IBIZOrderType> searchDefault(IPage page, @Param("srf") IBIZOrderTypeSearchContext context, @Param("ew") Wrapper<IBIZOrderType> wrapper) ;
Page<IBIZOrderType> searchDefault(IPage page, @Param("srf") IBIZOrderTypeSearchContext context, @Param("ew") Wrapper<IBIZOrderType> wrapper);
@Override
IBIZOrderType selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZOrderTypeMapper extends BaseMapper<IBIZOrderType>{
int update(@Param(Constants.ENTITY) IBIZOrderType entity, @Param("ew") Wrapper<IBIZOrderType> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZQJMapper extends BaseMapper<IBIZQJ>{
public interface IBIZQJMapper extends BaseMapper<IBIZQJ> {
Page<IBIZQJ> searchDefault(IPage page, @Param("srf") IBIZQJSearchContext context, @Param("ew") Wrapper<IBIZQJ> wrapper) ;
Page<IBIZQJ> searchDefault(IPage page, @Param("srf") IBIZQJSearchContext context, @Param("ew") Wrapper<IBIZQJ> wrapper);
@Override
IBIZQJ selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZQJMapper extends BaseMapper<IBIZQJ>{
int update(@Param(Constants.ENTITY) IBIZQJ entity, @Param("ew") Wrapper<IBIZQJ> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0001Mapper extends BaseMapper<IBIZSample0001>{
public interface IBIZSample0001Mapper extends BaseMapper<IBIZSample0001> {
Page<IBIZSample0001> searchDefault(IPage page, @Param("srf") IBIZSample0001SearchContext context, @Param("ew") Wrapper<IBIZSample0001> wrapper) ;
Page<IBIZSample0001> searchDefault(IPage page, @Param("srf") IBIZSample0001SearchContext context, @Param("ew") Wrapper<IBIZSample0001> wrapper);
@Override
IBIZSample0001 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0001Mapper extends BaseMapper<IBIZSample0001>{
int update(@Param(Constants.ENTITY) IBIZSample0001 entity, @Param("ew") Wrapper<IBIZSample0001> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -62,6 +62,6 @@ public interface IBIZSample0001Mapper extends BaseMapper<IBIZSample0001>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZSample0001> selectByIbizsample0002id(@Param("ibizsample0002id") Serializable ibizsample0002id) ;
List<IBIZSample0001> selectByIbizsample0002id(@Param("ibizsample0002id") Serializable ibizsample0002id);
}
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0002Mapper extends BaseMapper<IBIZSample0002>{
public interface IBIZSample0002Mapper extends BaseMapper<IBIZSample0002> {
Page<IBIZSample0002> searchDefault(IPage page, @Param("srf") IBIZSample0002SearchContext context, @Param("ew") Wrapper<IBIZSample0002> wrapper) ;
Page<IBIZSample0002> searchDefault(IPage page, @Param("srf") IBIZSample0002SearchContext context, @Param("ew") Wrapper<IBIZSample0002> wrapper);
@Override
IBIZSample0002 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0002Mapper extends BaseMapper<IBIZSample0002>{
int update(@Param(Constants.ENTITY) IBIZSample0002 entity, @Param("ew") Wrapper<IBIZSample0002> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,11 +17,11 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0003Mapper extends BaseMapper<IBIZSample0003>{
public interface IBIZSample0003Mapper extends BaseMapper<IBIZSample0003> {
Page<IBIZSample0003> searchCurData(IPage page, @Param("srf") IBIZSample0003SearchContext context, @Param("ew") Wrapper<IBIZSample0003> wrapper) ;
Page<IBIZSample0003> searchDefault(IPage page, @Param("srf") IBIZSample0003SearchContext context, @Param("ew") Wrapper<IBIZSample0003> wrapper) ;
Page<IBIZSample0003> searchTopData(IPage page, @Param("srf") IBIZSample0003SearchContext context, @Param("ew") Wrapper<IBIZSample0003> wrapper) ;
Page<IBIZSample0003> searchCurData(IPage page, @Param("srf") IBIZSample0003SearchContext context, @Param("ew") Wrapper<IBIZSample0003> wrapper);
Page<IBIZSample0003> searchDefault(IPage page, @Param("srf") IBIZSample0003SearchContext context, @Param("ew") Wrapper<IBIZSample0003> wrapper);
Page<IBIZSample0003> searchTopData(IPage page, @Param("srf") IBIZSample0003SearchContext context, @Param("ew") Wrapper<IBIZSample0003> wrapper);
@Override
IBIZSample0003 selectById(Serializable id);
@Override
......@@ -32,13 +32,13 @@ public interface IBIZSample0003Mapper extends BaseMapper<IBIZSample0003>{
int update(@Param(Constants.ENTITY) IBIZSample0003 entity, @Param("ew") Wrapper<IBIZSample0003> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -64,6 +64,6 @@ public interface IBIZSample0003Mapper extends BaseMapper<IBIZSample0003>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZSample0003> selectByPibizsample0003id(@Param("ibizsample0003id") Serializable ibizsample0003id) ;
List<IBIZSample0003> selectByPibizsample0003id(@Param("ibizsample0003id") Serializable ibizsample0003id);
}
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0004Mapper extends BaseMapper<IBIZSample0004>{
public interface IBIZSample0004Mapper extends BaseMapper<IBIZSample0004> {
Page<IBIZSample0004> searchDefault(IPage page, @Param("srf") IBIZSample0004SearchContext context, @Param("ew") Wrapper<IBIZSample0004> wrapper) ;
Page<IBIZSample0004> searchDefault(IPage page, @Param("srf") IBIZSample0004SearchContext context, @Param("ew") Wrapper<IBIZSample0004> wrapper);
@Override
IBIZSample0004 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0004Mapper extends BaseMapper<IBIZSample0004>{
int update(@Param(Constants.ENTITY) IBIZSample0004 entity, @Param("ew") Wrapper<IBIZSample0004> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0005Mapper extends BaseMapper<IBIZSample0005>{
public interface IBIZSample0005Mapper extends BaseMapper<IBIZSample0005> {
Page<IBIZSample0005> searchDefault(IPage page, @Param("srf") IBIZSample0005SearchContext context, @Param("ew") Wrapper<IBIZSample0005> wrapper) ;
Page<IBIZSample0005> searchDefault(IPage page, @Param("srf") IBIZSample0005SearchContext context, @Param("ew") Wrapper<IBIZSample0005> wrapper);
@Override
IBIZSample0005 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0005Mapper extends BaseMapper<IBIZSample0005>{
int update(@Param(Constants.ENTITY) IBIZSample0005 entity, @Param("ew") Wrapper<IBIZSample0005> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0006Mapper extends BaseMapper<IBIZSample0006>{
public interface IBIZSample0006Mapper extends BaseMapper<IBIZSample0006> {
Page<IBIZSample0006> searchDefault(IPage page, @Param("srf") IBIZSample0006SearchContext context, @Param("ew") Wrapper<IBIZSample0006> wrapper) ;
Page<IBIZSample0006> searchDefault(IPage page, @Param("srf") IBIZSample0006SearchContext context, @Param("ew") Wrapper<IBIZSample0006> wrapper);
@Override
IBIZSample0006 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0006Mapper extends BaseMapper<IBIZSample0006>{
int update(@Param(Constants.ENTITY) IBIZSample0006 entity, @Param("ew") Wrapper<IBIZSample0006> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,10 +17,10 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0007Mapper extends BaseMapper<IBIZSample0007>{
public interface IBIZSample0007Mapper extends BaseMapper<IBIZSample0007> {
Page<IBIZSample0007> searchCurGW(IPage page, @Param("srf") IBIZSample0007SearchContext context, @Param("ew") Wrapper<IBIZSample0007> wrapper) ;
Page<IBIZSample0007> searchDefault(IPage page, @Param("srf") IBIZSample0007SearchContext context, @Param("ew") Wrapper<IBIZSample0007> wrapper) ;
Page<IBIZSample0007> searchCurGW(IPage page, @Param("srf") IBIZSample0007SearchContext context, @Param("ew") Wrapper<IBIZSample0007> wrapper);
Page<IBIZSample0007> searchDefault(IPage page, @Param("srf") IBIZSample0007SearchContext context, @Param("ew") Wrapper<IBIZSample0007> wrapper);
@Override
IBIZSample0007 selectById(Serializable id);
@Override
......@@ -31,13 +31,13 @@ public interface IBIZSample0007Mapper extends BaseMapper<IBIZSample0007>{
int update(@Param(Constants.ENTITY) IBIZSample0007 entity, @Param("ew") Wrapper<IBIZSample0007> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -63,6 +63,6 @@ public interface IBIZSample0007Mapper extends BaseMapper<IBIZSample0007>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZSample0007> selectByIbizsample0006id(@Param("ibizsample0006id") Serializable ibizsample0006id) ;
List<IBIZSample0007> selectByIbizsample0006id(@Param("ibizsample0006id") Serializable ibizsample0006id);
}
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0008Mapper extends BaseMapper<IBIZSample0008>{
public interface IBIZSample0008Mapper extends BaseMapper<IBIZSample0008> {
Page<IBIZSample0008> searchDefault(IPage page, @Param("srf") IBIZSample0008SearchContext context, @Param("ew") Wrapper<IBIZSample0008> wrapper) ;
Page<IBIZSample0008> searchDefault(IPage page, @Param("srf") IBIZSample0008SearchContext context, @Param("ew") Wrapper<IBIZSample0008> wrapper);
@Override
IBIZSample0008 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0008Mapper extends BaseMapper<IBIZSample0008>{
int update(@Param(Constants.ENTITY) IBIZSample0008 entity, @Param("ew") Wrapper<IBIZSample0008> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0009Mapper extends BaseMapper<IBIZSample0009>{
public interface IBIZSample0009Mapper extends BaseMapper<IBIZSample0009> {
Page<IBIZSample0009> searchDefault(IPage page, @Param("srf") IBIZSample0009SearchContext context, @Param("ew") Wrapper<IBIZSample0009> wrapper) ;
Page<IBIZSample0009> searchDefault(IPage page, @Param("srf") IBIZSample0009SearchContext context, @Param("ew") Wrapper<IBIZSample0009> wrapper);
@Override
IBIZSample0009 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0009Mapper extends BaseMapper<IBIZSample0009>{
int update(@Param(Constants.ENTITY) IBIZSample0009 entity, @Param("ew") Wrapper<IBIZSample0009> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0010Mapper extends BaseMapper<IBIZSample0010>{
public interface IBIZSample0010Mapper extends BaseMapper<IBIZSample0010> {
Page<IBIZSample0010> searchDefault(IPage page, @Param("srf") IBIZSample0010SearchContext context, @Param("ew") Wrapper<IBIZSample0010> wrapper) ;
Page<IBIZSample0010> searchDefault(IPage page, @Param("srf") IBIZSample0010SearchContext context, @Param("ew") Wrapper<IBIZSample0010> wrapper);
@Override
IBIZSample0010 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0010Mapper extends BaseMapper<IBIZSample0010>{
int update(@Param(Constants.ENTITY) IBIZSample0010 entity, @Param("ew") Wrapper<IBIZSample0010> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0011Mapper extends BaseMapper<IBIZSample0011>{
public interface IBIZSample0011Mapper extends BaseMapper<IBIZSample0011> {
Page<IBIZSample0011> searchDefault(IPage page, @Param("srf") IBIZSample0011SearchContext context, @Param("ew") Wrapper<IBIZSample0011> wrapper) ;
Page<IBIZSample0011> searchDefault(IPage page, @Param("srf") IBIZSample0011SearchContext context, @Param("ew") Wrapper<IBIZSample0011> wrapper);
@Override
IBIZSample0011 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0011Mapper extends BaseMapper<IBIZSample0011>{
int update(@Param(Constants.ENTITY) IBIZSample0011 entity, @Param("ew") Wrapper<IBIZSample0011> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -62,8 +62,8 @@ public interface IBIZSample0011Mapper extends BaseMapper<IBIZSample0011>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZSample0011> selectByIbizsample0010id(@Param("ibizsample0010id") Serializable ibizsample0010id) ;
List<IBIZSample0011> selectByIbizsample0010id(@Param("ibizsample0010id") Serializable ibizsample0010id);
List<IBIZSample0011> selectByIbizuniproductid(@Param("ibizuniproductid") Serializable ibizuniproductid) ;
List<IBIZSample0011> selectByIbizuniproductid(@Param("ibizuniproductid") Serializable ibizuniproductid);
}
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0012Mapper extends BaseMapper<IBIZSample0012>{
public interface IBIZSample0012Mapper extends BaseMapper<IBIZSample0012> {
Page<IBIZSample0012> searchDefault(IPage page, @Param("srf") IBIZSample0012SearchContext context, @Param("ew") Wrapper<IBIZSample0012> wrapper) ;
Page<IBIZSample0012> searchDefault(IPage page, @Param("srf") IBIZSample0012SearchContext context, @Param("ew") Wrapper<IBIZSample0012> wrapper);
@Override
IBIZSample0012 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0012Mapper extends BaseMapper<IBIZSample0012>{
int update(@Param(Constants.ENTITY) IBIZSample0012 entity, @Param("ew") Wrapper<IBIZSample0012> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0013Mapper extends BaseMapper<IBIZSample0013>{
public interface IBIZSample0013Mapper extends BaseMapper<IBIZSample0013> {
Page<IBIZSample0013> searchDefault(IPage page, @Param("srf") IBIZSample0013SearchContext context, @Param("ew") Wrapper<IBIZSample0013> wrapper) ;
Page<IBIZSample0013> searchDefault(IPage page, @Param("srf") IBIZSample0013SearchContext context, @Param("ew") Wrapper<IBIZSample0013> wrapper);
@Override
IBIZSample0013 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0013Mapper extends BaseMapper<IBIZSample0013>{
int update(@Param(Constants.ENTITY) IBIZSample0013 entity, @Param("ew") Wrapper<IBIZSample0013> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -62,8 +62,8 @@ public interface IBIZSample0013Mapper extends BaseMapper<IBIZSample0013>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZSample0013> selectByIbizsample0012id(@Param("ibizsample0012id") Serializable ibizsample0012id) ;
List<IBIZSample0013> selectByIbizsample0012id(@Param("ibizsample0012id") Serializable ibizsample0012id);
List<IBIZSample0013> selectByIbizuniproductid(@Param("ibizuniproductid") Serializable ibizuniproductid) ;
List<IBIZSample0013> selectByIbizuniproductid(@Param("ibizuniproductid") Serializable ibizuniproductid);
}
......@@ -17,10 +17,10 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0014Mapper extends BaseMapper<IBIZSample0014>{
public interface IBIZSample0014Mapper extends BaseMapper<IBIZSample0014> {
Page<IBIZSample0014> searchCurIBIZSample0014(IPage page, @Param("srf") IBIZSample0014SearchContext context, @Param("ew") Wrapper<IBIZSample0014> wrapper) ;
Page<IBIZSample0014> searchDefault(IPage page, @Param("srf") IBIZSample0014SearchContext context, @Param("ew") Wrapper<IBIZSample0014> wrapper) ;
Page<IBIZSample0014> searchCurIBIZSample0014(IPage page, @Param("srf") IBIZSample0014SearchContext context, @Param("ew") Wrapper<IBIZSample0014> wrapper);
Page<IBIZSample0014> searchDefault(IPage page, @Param("srf") IBIZSample0014SearchContext context, @Param("ew") Wrapper<IBIZSample0014> wrapper);
@Override
IBIZSample0014 selectById(Serializable id);
@Override
......@@ -31,13 +31,13 @@ public interface IBIZSample0014Mapper extends BaseMapper<IBIZSample0014>{
int update(@Param(Constants.ENTITY) IBIZSample0014 entity, @Param("ew") Wrapper<IBIZSample0014> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -63,6 +63,6 @@ public interface IBIZSample0014Mapper extends BaseMapper<IBIZSample0014>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZSample0014> selectByIbizsample0003id(@Param("ibizsample0003id") Serializable ibizsample0003id) ;
List<IBIZSample0014> selectByIbizsample0003id(@Param("ibizsample0003id") Serializable ibizsample0003id);
}
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0015Mapper extends BaseMapper<IBIZSample0015>{
public interface IBIZSample0015Mapper extends BaseMapper<IBIZSample0015> {
Page<IBIZSample0015> searchDefault(IPage page, @Param("srf") IBIZSample0015SearchContext context, @Param("ew") Wrapper<IBIZSample0015> wrapper) ;
Page<IBIZSample0015> searchDefault(IPage page, @Param("srf") IBIZSample0015SearchContext context, @Param("ew") Wrapper<IBIZSample0015> wrapper);
@Override
IBIZSample0015 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0015Mapper extends BaseMapper<IBIZSample0015>{
int update(@Param(Constants.ENTITY) IBIZSample0015 entity, @Param("ew") Wrapper<IBIZSample0015> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0016Mapper extends BaseMapper<IBIZSample0016>{
public interface IBIZSample0016Mapper extends BaseMapper<IBIZSample0016> {
Page<IBIZSample0016> searchDefault(IPage page, @Param("srf") IBIZSample0016SearchContext context, @Param("ew") Wrapper<IBIZSample0016> wrapper) ;
Page<IBIZSample0016> searchDefault(IPage page, @Param("srf") IBIZSample0016SearchContext context, @Param("ew") Wrapper<IBIZSample0016> wrapper);
@Override
IBIZSample0016 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0016Mapper extends BaseMapper<IBIZSample0016>{
int update(@Param(Constants.ENTITY) IBIZSample0016 entity, @Param("ew") Wrapper<IBIZSample0016> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -62,8 +62,8 @@ public interface IBIZSample0016Mapper extends BaseMapper<IBIZSample0016>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZSample0016> selectByIbizsample0014id(@Param("ibizsample0014id") Serializable ibizsample0014id) ;
List<IBIZSample0016> selectByIbizsample0014id(@Param("ibizsample0014id") Serializable ibizsample0014id);
List<IBIZSample0016> selectByIbizsample0015id(@Param("ibizsample0015id") Serializable ibizsample0015id) ;
List<IBIZSample0016> selectByIbizsample0015id(@Param("ibizsample0015id") Serializable ibizsample0015id);
}
......@@ -17,10 +17,10 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0017Mapper extends BaseMapper<IBIZSample0017>{
public interface IBIZSample0017Mapper extends BaseMapper<IBIZSample0017> {
Page<IBIZSample0017> searchDefault(IPage page, @Param("srf") IBIZSample0017SearchContext context, @Param("ew") Wrapper<IBIZSample0017> wrapper) ;
Page<IBIZSample0017> searchFormType(IPage page, @Param("srf") IBIZSample0017SearchContext context, @Param("ew") Wrapper<IBIZSample0017> wrapper) ;
Page<IBIZSample0017> searchDefault(IPage page, @Param("srf") IBIZSample0017SearchContext context, @Param("ew") Wrapper<IBIZSample0017> wrapper);
Page<IBIZSample0017> searchFormType(IPage page, @Param("srf") IBIZSample0017SearchContext context, @Param("ew") Wrapper<IBIZSample0017> wrapper);
@Override
IBIZSample0017 selectById(Serializable id);
@Override
......@@ -31,13 +31,13 @@ public interface IBIZSample0017Mapper extends BaseMapper<IBIZSample0017>{
int update(@Param(Constants.ENTITY) IBIZSample0017 entity, @Param("ew") Wrapper<IBIZSample0017> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0018Mapper extends BaseMapper<IBIZSample0018>{
public interface IBIZSample0018Mapper extends BaseMapper<IBIZSample0018> {
Page<IBIZSample0018> searchDefault(IPage page, @Param("srf") IBIZSample0018SearchContext context, @Param("ew") Wrapper<IBIZSample0018> wrapper) ;
Page<IBIZSample0018> searchDefault(IPage page, @Param("srf") IBIZSample0018SearchContext context, @Param("ew") Wrapper<IBIZSample0018> wrapper);
@Override
IBIZSample0018 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0018Mapper extends BaseMapper<IBIZSample0018>{
int update(@Param(Constants.ENTITY) IBIZSample0018 entity, @Param("ew") Wrapper<IBIZSample0018> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0019Mapper extends BaseMapper<IBIZSample0019>{
public interface IBIZSample0019Mapper extends BaseMapper<IBIZSample0019> {
Page<IBIZSample0019> searchDefault(IPage page, @Param("srf") IBIZSample0019SearchContext context, @Param("ew") Wrapper<IBIZSample0019> wrapper) ;
Page<IBIZSample0019> searchDefault(IPage page, @Param("srf") IBIZSample0019SearchContext context, @Param("ew") Wrapper<IBIZSample0019> wrapper);
@Override
IBIZSample0019 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0019Mapper extends BaseMapper<IBIZSample0019>{
int update(@Param(Constants.ENTITY) IBIZSample0019 entity, @Param("ew") Wrapper<IBIZSample0019> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSample0020Mapper extends BaseMapper<IBIZSample0020>{
public interface IBIZSample0020Mapper extends BaseMapper<IBIZSample0020> {
Page<IBIZSample0020> searchDefault(IPage page, @Param("srf") IBIZSample0020SearchContext context, @Param("ew") Wrapper<IBIZSample0020> wrapper) ;
Page<IBIZSample0020> searchDefault(IPage page, @Param("srf") IBIZSample0020SearchContext context, @Param("ew") Wrapper<IBIZSample0020> wrapper);
@Override
IBIZSample0020 selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSample0020Mapper extends BaseMapper<IBIZSample0020>{
int update(@Param(Constants.ENTITY) IBIZSample0020 entity, @Param("ew") Wrapper<IBIZSample0020> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......@@ -62,6 +62,6 @@ public interface IBIZSample0020Mapper extends BaseMapper<IBIZSample0020>{
@Delete("${sql}")
boolean deleteBySQL(@Param("sql") String sql, @Param("et")Map param);
List<IBIZSample0020> selectByIbizsample0019id(@Param("ibizsample0019id") Serializable ibizsample0019id) ;
List<IBIZSample0020> selectByIbizsample0019id(@Param("ibizsample0019id") Serializable ibizsample0019id);
}
......@@ -17,10 +17,10 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSampleMapper extends BaseMapper<IBIZSample>{
public interface IBIZSampleMapper extends BaseMapper<IBIZSample> {
Page<IBIZSample> searchDefault(IPage page, @Param("srf") IBIZSampleSearchContext context, @Param("ew") Wrapper<IBIZSample> wrapper) ;
Page<IBIZSample> searchFormType(IPage page, @Param("srf") IBIZSampleSearchContext context, @Param("ew") Wrapper<IBIZSample> wrapper) ;
Page<IBIZSample> searchDefault(IPage page, @Param("srf") IBIZSampleSearchContext context, @Param("ew") Wrapper<IBIZSample> wrapper);
Page<IBIZSample> searchFormType(IPage page, @Param("srf") IBIZSampleSearchContext context, @Param("ew") Wrapper<IBIZSample> wrapper);
@Override
IBIZSample selectById(Serializable id);
@Override
......@@ -31,13 +31,13 @@ public interface IBIZSampleMapper extends BaseMapper<IBIZSample>{
int update(@Param(Constants.ENTITY) IBIZSample entity, @Param("ew") Wrapper<IBIZSample> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSoftwareSuitMapper extends BaseMapper<IBIZSoftwareSuit>{
public interface IBIZSoftwareSuitMapper extends BaseMapper<IBIZSoftwareSuit> {
Page<IBIZSoftwareSuit> searchDefault(IPage page, @Param("srf") IBIZSoftwareSuitSearchContext context, @Param("ew") Wrapper<IBIZSoftwareSuit> wrapper) ;
Page<IBIZSoftwareSuit> searchDefault(IPage page, @Param("srf") IBIZSoftwareSuitSearchContext context, @Param("ew") Wrapper<IBIZSoftwareSuit> wrapper);
@Override
IBIZSoftwareSuit selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSoftwareSuitMapper extends BaseMapper<IBIZSoftwareSuit>{
int update(@Param(Constants.ENTITY) IBIZSoftwareSuit entity, @Param("ew") Wrapper<IBIZSoftwareSuit> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZStorageMapper extends BaseMapper<IBIZStorage>{
public interface IBIZStorageMapper extends BaseMapper<IBIZStorage> {
Page<IBIZStorage> searchDefault(IPage page, @Param("srf") IBIZStorageSearchContext context, @Param("ew") Wrapper<IBIZStorage> wrapper) ;
Page<IBIZStorage> searchDefault(IPage page, @Param("srf") IBIZStorageSearchContext context, @Param("ew") Wrapper<IBIZStorage> wrapper);
@Override
IBIZStorage selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZStorageMapper extends BaseMapper<IBIZStorage>{
int update(@Param(Constants.ENTITY) IBIZStorage entity, @Param("ew") Wrapper<IBIZStorage> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZSupplierMapper extends BaseMapper<IBIZSupplier>{
public interface IBIZSupplierMapper extends BaseMapper<IBIZSupplier> {
Page<IBIZSupplier> searchDefault(IPage page, @Param("srf") IBIZSupplierSearchContext context, @Param("ew") Wrapper<IBIZSupplier> wrapper) ;
Page<IBIZSupplier> searchDefault(IPage page, @Param("srf") IBIZSupplierSearchContext context, @Param("ew") Wrapper<IBIZSupplier> wrapper);
@Override
IBIZSupplier selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZSupplierMapper extends BaseMapper<IBIZSupplier>{
int update(@Param(Constants.ENTITY) IBIZSupplier entity, @Param("ew") Wrapper<IBIZSupplier> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,10 +17,10 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZUNIProductMapper extends BaseMapper<IBIZUNIProduct>{
public interface IBIZUNIProductMapper extends BaseMapper<IBIZUNIProduct> {
Page<IBIZUNIProduct> searchDefault(IPage page, @Param("srf") IBIZUNIProductSearchContext context, @Param("ew") Wrapper<IBIZUNIProduct> wrapper) ;
Page<IBIZUNIProduct> searchIndexDER(IPage page, @Param("srf") IBIZUNIProductSearchContext context, @Param("ew") Wrapper<IBIZUNIProduct> wrapper) ;
Page<IBIZUNIProduct> searchDefault(IPage page, @Param("srf") IBIZUNIProductSearchContext context, @Param("ew") Wrapper<IBIZUNIProduct> wrapper);
Page<IBIZUNIProduct> searchIndexDER(IPage page, @Param("srf") IBIZUNIProductSearchContext context, @Param("ew") Wrapper<IBIZUNIProduct> wrapper);
@Override
IBIZUNIProduct selectById(Serializable id);
@Override
......@@ -31,13 +31,13 @@ public interface IBIZUNIProductMapper extends BaseMapper<IBIZUNIProduct>{
int update(@Param(Constants.ENTITY) IBIZUNIProduct entity, @Param("ew") Wrapper<IBIZUNIProduct> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
......@@ -17,9 +17,9 @@ import java.io.Serializable;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import com.alibaba.fastjson.JSONObject;
public interface IBIZViewMsgMapper extends BaseMapper<IBIZViewMsg>{
public interface IBIZViewMsgMapper extends BaseMapper<IBIZViewMsg> {
Page<IBIZViewMsg> searchDefault(IPage page, @Param("srf") IBIZViewMsgSearchContext context, @Param("ew") Wrapper<IBIZViewMsg> wrapper) ;
Page<IBIZViewMsg> searchDefault(IPage page, @Param("srf") IBIZViewMsgSearchContext context, @Param("ew") Wrapper<IBIZViewMsg> wrapper);
@Override
IBIZViewMsg selectById(Serializable id);
@Override
......@@ -30,13 +30,13 @@ public interface IBIZViewMsgMapper extends BaseMapper<IBIZViewMsg>{
int update(@Param(Constants.ENTITY) IBIZViewMsg entity, @Param("ew") Wrapper<IBIZViewMsg> updateWrapper);
@Override
int deleteById(Serializable id);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义查询SQL
* @param sql
* @return
*/
@Select("${sql}")
List<JSONObject> selectBySQL(@Param("sql") String sql, @Param("et")Map param);
/**
* 自定义更新SQL
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册