Compare commits
No commits in common. "8b6f4026340b76d95a945ddcf9d169b05c0546e8" and "c3587c2b7e603eb3098595f8b0cf3dcf0c772811" have entirely different histories.
8b6f402634
...
c3587c2b7e
@ -1,9 +1,9 @@
|
|||||||
package com.ktg.mes.md.domain;
|
package com.ktg.mes.md.domain;
|
||||||
|
|
||||||
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
import com.ktg.common.annotation.Excel;
|
import com.ktg.common.annotation.Excel;
|
||||||
import com.ktg.common.core.domain.BaseEntity;
|
import com.ktg.common.core.domain.BaseEntity;
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 客户对象 md_client
|
* 客户对象 md_client
|
||||||
@ -11,8 +11,6 @@ import lombok.EqualsAndHashCode;
|
|||||||
* @author yinjinlu
|
* @author yinjinlu
|
||||||
* @date 2022-05-06
|
* @date 2022-05-06
|
||||||
*/
|
*/
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
@Data
|
|
||||||
public class MdClient extends BaseEntity
|
public class MdClient extends BaseEntity
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@ -104,4 +102,256 @@ public class MdClient extends BaseEntity
|
|||||||
|
|
||||||
/** 预留字段4 */
|
/** 预留字段4 */
|
||||||
private Long attr4;
|
private Long attr4;
|
||||||
|
|
||||||
|
public void setClientId(Long clientId)
|
||||||
|
{
|
||||||
|
this.clientId = clientId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getClientId()
|
||||||
|
{
|
||||||
|
return clientId;
|
||||||
|
}
|
||||||
|
public void setClientCode(String clientCode)
|
||||||
|
{
|
||||||
|
this.clientCode = clientCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getClientCode()
|
||||||
|
{
|
||||||
|
return clientCode;
|
||||||
|
}
|
||||||
|
public void setClientName(String clientName)
|
||||||
|
{
|
||||||
|
this.clientName = clientName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getClientName()
|
||||||
|
{
|
||||||
|
return clientName;
|
||||||
|
}
|
||||||
|
public void setClientNick(String clientNick)
|
||||||
|
{
|
||||||
|
this.clientNick = clientNick;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getClientNick()
|
||||||
|
{
|
||||||
|
return clientNick;
|
||||||
|
}
|
||||||
|
public void setClientEn(String clientEn)
|
||||||
|
{
|
||||||
|
this.clientEn = clientEn;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getClientEn()
|
||||||
|
{
|
||||||
|
return clientEn;
|
||||||
|
}
|
||||||
|
public void setClientDes(String clientDes)
|
||||||
|
{
|
||||||
|
this.clientDes = clientDes;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getClientDes()
|
||||||
|
{
|
||||||
|
return clientDes;
|
||||||
|
}
|
||||||
|
public void setClientLogo(String clientLogo)
|
||||||
|
{
|
||||||
|
this.clientLogo = clientLogo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getClientLogo()
|
||||||
|
{
|
||||||
|
return clientLogo;
|
||||||
|
}
|
||||||
|
public void setClientType(String clientType)
|
||||||
|
{
|
||||||
|
this.clientType = clientType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getClientType()
|
||||||
|
{
|
||||||
|
return clientType;
|
||||||
|
}
|
||||||
|
public void setAddress(String address)
|
||||||
|
{
|
||||||
|
this.address = address;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAddress()
|
||||||
|
{
|
||||||
|
return address;
|
||||||
|
}
|
||||||
|
public void setWebsite(String website)
|
||||||
|
{
|
||||||
|
this.website = website;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWebsite()
|
||||||
|
{
|
||||||
|
return website;
|
||||||
|
}
|
||||||
|
public void setEmail(String email)
|
||||||
|
{
|
||||||
|
this.email = email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEmail()
|
||||||
|
{
|
||||||
|
return email;
|
||||||
|
}
|
||||||
|
public void setTel(String tel)
|
||||||
|
{
|
||||||
|
this.tel = tel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTel()
|
||||||
|
{
|
||||||
|
return tel;
|
||||||
|
}
|
||||||
|
public void setContact1(String contact1)
|
||||||
|
{
|
||||||
|
this.contact1 = contact1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getContact1()
|
||||||
|
{
|
||||||
|
return contact1;
|
||||||
|
}
|
||||||
|
public void setContact1Tel(String contact1Tel)
|
||||||
|
{
|
||||||
|
this.contact1Tel = contact1Tel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getContact1Tel()
|
||||||
|
{
|
||||||
|
return contact1Tel;
|
||||||
|
}
|
||||||
|
public void setContact1Email(String contact1Email)
|
||||||
|
{
|
||||||
|
this.contact1Email = contact1Email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getContact1Email()
|
||||||
|
{
|
||||||
|
return contact1Email;
|
||||||
|
}
|
||||||
|
public void setContact2(String contact2)
|
||||||
|
{
|
||||||
|
this.contact2 = contact2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getContact2()
|
||||||
|
{
|
||||||
|
return contact2;
|
||||||
|
}
|
||||||
|
public void setContact2Tel(String contact2Tel)
|
||||||
|
{
|
||||||
|
this.contact2Tel = contact2Tel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getContact2Tel()
|
||||||
|
{
|
||||||
|
return contact2Tel;
|
||||||
|
}
|
||||||
|
public void setContact2Email(String contact2Email)
|
||||||
|
{
|
||||||
|
this.contact2Email = contact2Email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getContact2Email()
|
||||||
|
{
|
||||||
|
return contact2Email;
|
||||||
|
}
|
||||||
|
public void setCreditCode(String creditCode)
|
||||||
|
{
|
||||||
|
this.creditCode = creditCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCreditCode()
|
||||||
|
{
|
||||||
|
return creditCode;
|
||||||
|
}
|
||||||
|
public void setEnableFlag(String enableFlag)
|
||||||
|
{
|
||||||
|
this.enableFlag = enableFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEnableFlag()
|
||||||
|
{
|
||||||
|
return enableFlag;
|
||||||
|
}
|
||||||
|
public void setAttr1(String attr1)
|
||||||
|
{
|
||||||
|
this.attr1 = attr1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr1()
|
||||||
|
{
|
||||||
|
return attr1;
|
||||||
|
}
|
||||||
|
public void setAttr2(String attr2)
|
||||||
|
{
|
||||||
|
this.attr2 = attr2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttr2()
|
||||||
|
{
|
||||||
|
return attr2;
|
||||||
|
}
|
||||||
|
public void setAttr3(Long attr3)
|
||||||
|
{
|
||||||
|
this.attr3 = attr3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getAttr3()
|
||||||
|
{
|
||||||
|
return attr3;
|
||||||
|
}
|
||||||
|
public void setAttr4(Long attr4)
|
||||||
|
{
|
||||||
|
this.attr4 = attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getAttr4()
|
||||||
|
{
|
||||||
|
return attr4;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
|
.append("clientId", getClientId())
|
||||||
|
.append("clientCode", getClientCode())
|
||||||
|
.append("clientName", getClientName())
|
||||||
|
.append("clientNick", getClientNick())
|
||||||
|
.append("clientEn", getClientEn())
|
||||||
|
.append("clientDes", getClientDes())
|
||||||
|
.append("clientLogo", getClientLogo())
|
||||||
|
.append("clientType", getClientType())
|
||||||
|
.append("address", getAddress())
|
||||||
|
.append("website", getWebsite())
|
||||||
|
.append("email", getEmail())
|
||||||
|
.append("tel", getTel())
|
||||||
|
.append("contact1", getContact1())
|
||||||
|
.append("contact1Tel", getContact1Tel())
|
||||||
|
.append("contact1Email", getContact1Email())
|
||||||
|
.append("contact2", getContact2())
|
||||||
|
.append("contact2Tel", getContact2Tel())
|
||||||
|
.append("contact2Email", getContact2Email())
|
||||||
|
.append("creditCode", getCreditCode())
|
||||||
|
.append("enableFlag", getEnableFlag())
|
||||||
|
.append("remark", getRemark())
|
||||||
|
.append("attr1", getAttr1())
|
||||||
|
.append("attr2", getAttr2())
|
||||||
|
.append("attr3", getAttr3())
|
||||||
|
.append("attr4", getAttr4())
|
||||||
|
.append("createBy", getCreateBy())
|
||||||
|
.append("createTime", getCreateTime())
|
||||||
|
.append("updateBy", getUpdateBy())
|
||||||
|
.append("updateTime", getUpdateTime())
|
||||||
|
.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user