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

ibizdev提交

上级 af814120
......@@ -37,9 +37,7 @@ public interface IIBZDictItemService extends IService<IBZDictItem>{
Page<IBZDictItem> searchDefault(IBZDictItemSearchContext context) ;
List<IBZDictItem> selectByDictid(String dictid) ;
void saveByDictid(String dictid,List<IBZDictItem> list) ;
void removeByDictid(String dictid) ;
......
......@@ -11,6 +11,7 @@ import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.alibaba.fastjson.annotation.JSONField;
import cn.ibizlab.util.domain.DTOBase;
import lombok.Data;
......@@ -26,6 +27,7 @@ public class IBZDictDTO extends DTOBase implements Serializable {
* 属性 [IBZDICTID]
*
*/
@JSONField(name = "dictid")
@JsonProperty("dictid")
private String dictid;
......@@ -33,6 +35,7 @@ public class IBZDictDTO extends DTOBase implements Serializable {
* 属性 [IBZDICTNAME]
*
*/
@JSONField(name = "dictname")
@JsonProperty("dictname")
private String dictname;
......@@ -40,6 +43,7 @@ public class IBZDictDTO extends DTOBase implements Serializable {
* 属性 [ENABLE]
*
*/
@JSONField(name = "enable")
@JsonProperty("enable")
private Integer enable;
......@@ -47,6 +51,7 @@ public class IBZDictDTO extends DTOBase implements Serializable {
* 属性 [CREATEDATE]
*
*/
@JSONField(name = "createdate")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -54,6 +59,7 @@ public class IBZDictDTO extends DTOBase implements Serializable {
* 属性 [UPDATEDATE]
*
*/
@JSONField(name = "updatedate")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -61,6 +67,7 @@ public class IBZDictDTO extends DTOBase implements Serializable {
* 属性 [CREATEMAN]
*
*/
@JSONField(name = "createman")
@JsonProperty("createman")
private String createman;
......@@ -68,88 +75,40 @@ public class IBZDictDTO extends DTOBase implements Serializable {
* 属性 [UPDATEMAN]
*
*/
@JSONField(name = "updateman")
@JsonProperty("updateman")
private String updateman;
/**
* 设置 [IBZDICTID]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(dictId==null){
this.addFocusNull("ibzdictid");
}
}
/**
* 设置 [IBZDICTNAME]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(dictName==null){
this.addFocusNull("ibzdictname");
}
}
/**
* 设置 [ENABLE]
*/
public void setUpdateman(Integer updateman){
this.updateman = updateman ;
if(enable==null){
this.addFocusNull("enable");
}
}
/**
* 设置 [CREATEDATE]
*/
public void setUpdateman(Timestamp updateman){
this.updateman = updateman ;
if(createDate==null){
this.addFocusNull("createdate");
}
}
/**
* 设置 [UPDATEDATE]
*/
public void setUpdateman(Timestamp updateman){
this.updateman = updateman ;
if(updateDate==null){
this.addFocusNull("updatedate");
}
}
/**
* 设置 [CREATEMAN]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(createMan==null){
this.addFocusNull("createman");
}
}
/**
* 设置 [UPDATEMAN]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(updateMan==null){
this.addFocusNull("updateman");
}
public void setDictname(String dictname){
this.dictname = dictname ;
this.modify("ibzdictname",dictname);
}
/**
* [IBZDICTITEM]
*/
private List<IBZDictItemDTO> ibzdictitems = new ArrayList<IBZDictItemDTO>();
@JsonProperty("ibzdictitems")
public List<IBZDictItemDTO> getIbzdictitems(){
return ibzdictitems ;
}
@JsonProperty("ibzdictitems")
public void setIbzdictitems(List <IBZDictItemDTO> ibzdictitems){
this.ibzdictitems = ibzdictitems ;
}
@JSONField(name = "ibzdictitems")
private List<IBZDictItemDTO> items ;
}
......@@ -11,6 +11,7 @@ import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.alibaba.fastjson.annotation.JSONField;
import cn.ibizlab.util.domain.DTOBase;
import lombok.Data;
......@@ -26,6 +27,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [IBZDICTITEMID]
*
*/
@JSONField(name = "itemid")
@JsonProperty("itemid")
private String itemid;
......@@ -33,6 +35,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [IBZDICTITEMNAME]
*
*/
@JSONField(name = "itemname")
@JsonProperty("itemname")
private String itemname;
......@@ -40,6 +43,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [DICTITEMVAL]
*
*/
@JSONField(name = "itemval")
@JsonProperty("itemval")
private String itemval;
......@@ -47,6 +51,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [DICTID]
*
*/
@JSONField(name = "dictid")
@JsonProperty("dictid")
private String dictid;
......@@ -54,6 +59,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [PITEMVAL]
*
*/
@JSONField(name = "pitemval")
@JsonProperty("pitemval")
private String pitemval;
......@@ -61,6 +67,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [ITEMFILTER]
*
*/
@JSONField(name = "itemfilter")
@JsonProperty("itemfilter")
private String itemfilter;
......@@ -68,6 +75,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [ITEMCLS]
*
*/
@JSONField(name = "itemcls")
@JsonProperty("itemcls")
private String itemcls;
......@@ -75,6 +83,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [ITEMICON]
*
*/
@JSONField(name = "itemicon")
@JsonProperty("itemicon")
private String itemicon;
......@@ -82,6 +91,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [SHOWORDER]
*
*/
@JSONField(name = "showorder")
@JsonProperty("showorder")
private Integer showorder;
......@@ -89,6 +99,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [CREATEDATE]
*
*/
@JSONField(name = "createdate")
@JsonProperty("createdate")
private Timestamp createdate;
......@@ -96,6 +107,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [UPDATEDATE]
*
*/
@JSONField(name = "updatedate")
@JsonProperty("updatedate")
private Timestamp updatedate;
......@@ -103,6 +115,7 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [CREATEMAN]
*
*/
@JSONField(name = "createman")
@JsonProperty("createman")
private String createman;
......@@ -110,127 +123,93 @@ public class IBZDictItemDTO extends DTOBase implements Serializable {
* 属性 [UPDATEMAN]
*
*/
@JSONField(name = "updateman")
@JsonProperty("updateman")
private String updateman;
/**
* 设置 [IBZDICTITEMID]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(itemId==null){
this.addFocusNull("ibzdictitemid");
}
}
/**
* 设置 [IBZDICTITEMNAME]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(itemName==null){
this.addFocusNull("ibzdictitemname");
}
public void setItemname(String itemname){
this.itemname = itemname ;
this.modify("ibzdictitemname",itemname);
}
/**
* 设置 [DICTITEMVAL]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(itemVal==null){
this.addFocusNull("dictitemval");
}
public void setItemval(String itemval){
this.itemval = itemval ;
this.modify("dictitemval",itemval);
}
/**
* 设置 [DICTID]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(dictId==null){
this.addFocusNull("dictid");
}
public void setDictid(String dictid){
this.dictid = dictid ;
this.modify("dictid",dictid);
}
/**
* 设置 [PITEMVAL]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(pItemVal==null){
this.addFocusNull("pitemval");
}
public void setPitemval(String pitemval){
this.pitemval = pitemval ;
this.modify("pitemval",pitemval);
}
/**
* 设置 [ITEMFILTER]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(itemFilter==null){
this.addFocusNull("itemfilter");
}
public void setItemfilter(String itemfilter){
this.itemfilter = itemfilter ;
this.modify("itemfilter",itemfilter);
}
/**
* 设置 [ITEMCLS]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(itemCls==null){
this.addFocusNull("itemcls");
}
public void setItemcls(String itemcls){
this.itemcls = itemcls ;
this.modify("itemcls",itemcls);
}
/**
* 设置 [ITEMICON]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(itemIcon==null){
this.addFocusNull("itemicon");
}
public void setItemicon(String itemicon){
this.itemicon = itemicon ;
this.modify("itemicon",itemicon);
}
/**
* 设置 [SHOWORDER]
*/
public void setUpdateman(Integer updateman){
this.updateman = updateman ;
if(showOrder==null){
this.addFocusNull("showorder");
}
}
/**
* 设置 [CREATEDATE]
*/
public void setUpdateman(Timestamp updateman){
this.updateman = updateman ;
if(createDate==null){
this.addFocusNull("createdate");
}
}
/**
* 设置 [UPDATEDATE]
*/
public void setUpdateman(Timestamp updateman){
this.updateman = updateman ;
if(updateDate==null){
this.addFocusNull("updatedate");
}
}
/**
* 设置 [CREATEMAN]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(createMan==null){
this.addFocusNull("createman");
}
}
/**
* 设置 [UPDATEMAN]
*/
public void setUpdateman(String updateman){
this.updateman = updateman ;
if(updateMan==null){
this.addFocusNull("updateman");
}
public void setShoworder(Integer showorder){
this.showorder = showorder ;
this.modify("showorder",showorder);
}
}
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册