131 lines
3.7 KiB
Java
131 lines
3.7 KiB
Java
package com.ruoyi.content.domain;
|
|
|
|
public class LdComParty {
|
|
/**
|
|
* This field was generated by MyBatis Generator.
|
|
* This field corresponds to the database column ldcom_party.PARTY_ID
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
private String partyId;
|
|
|
|
/**
|
|
* This field was generated by MyBatis Generator.
|
|
* This field corresponds to the database column ldcom_party.COMCODE
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
private String comcode;
|
|
|
|
/**
|
|
* This field was generated by MyBatis Generator.
|
|
* This field corresponds to the database column ldcom_party.SHORTNAME
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
private String shortname;
|
|
|
|
/**
|
|
* This field was generated by MyBatis Generator.
|
|
* This field corresponds to the database column ldcom_party.COMPANY_ID
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
private String companyId;
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method returns the value of the database column ldcom_party.PARTY_ID
|
|
*
|
|
* @return the value of ldcom_party.PARTY_ID
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
public String getPartyId() {
|
|
return partyId;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method sets the value of the database column ldcom_party.PARTY_ID
|
|
*
|
|
* @param partyId the value for ldcom_party.PARTY_ID
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
public void setPartyId(String partyId) {
|
|
this.partyId = partyId;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method returns the value of the database column ldcom_party.COMCODE
|
|
*
|
|
* @return the value of ldcom_party.COMCODE
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
public String getComcode() {
|
|
return comcode;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method sets the value of the database column ldcom_party.COMCODE
|
|
*
|
|
* @param comcode the value for ldcom_party.COMCODE
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
public void setComcode(String comcode) {
|
|
this.comcode = comcode;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method returns the value of the database column ldcom_party.SHORTNAME
|
|
*
|
|
* @return the value of ldcom_party.SHORTNAME
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
public String getShortname() {
|
|
return shortname;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method sets the value of the database column ldcom_party.SHORTNAME
|
|
*
|
|
* @param shortname the value for ldcom_party.SHORTNAME
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
public void setShortname(String shortname) {
|
|
this.shortname = shortname;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method returns the value of the database column ldcom_party.COMPANY_ID
|
|
*
|
|
* @return the value of ldcom_party.COMPANY_ID
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
public String getCompanyId() {
|
|
return companyId;
|
|
}
|
|
|
|
/**
|
|
* This method was generated by MyBatis Generator.
|
|
* This method sets the value of the database column ldcom_party.COMPANY_ID
|
|
*
|
|
* @param companyId the value for ldcom_party.COMPANY_ID
|
|
*
|
|
* @mbggenerated Tue Sep 25 15:09:32 CST 2018
|
|
*/
|
|
public void setCompanyId(String companyId) {
|
|
this.companyId = companyId;
|
|
}
|
|
} |