| | |
| | | @ApiModelProperty(value= "法人或授权代表") |
| | | private String boss; |
| | | |
| | | /** |
| | | * 合同编号 |
| | | */ |
| | | @ApiModelProperty(value= "合同编号") |
| | | private String serial; |
| | | |
| | | public Contract() {} |
| | | |
| | | public Contract(Long id, String customer, String address, String company, String companyAddress, String taxNum, String bank, String bankNum, Date createTime, Date updateTime, Long createBy, Long updateBy, String filepath, String city, String shippingAddress, String shippingName, String shippingPhone, Double price, String email, String name, Integer status, String memo, String boss) { |
| | | public Contract(Long id, String customer, String address, String company, String companyAddress, String taxNum, String bank, String bankNum, Date createTime, Date updateTime, Long createBy, Long updateBy, String filepath, String city, String shippingAddress, String shippingName, String shippingPhone, Double price, String email, String name, Integer status, String memo, String boss, String serial) { |
| | | this.id = id; |
| | | this.customer = customer; |
| | | this.address = address; |
| | |
| | | this.status = status; |
| | | this.memo = memo; |
| | | this.boss = boss; |
| | | this.serial = serial; |
| | | } |
| | | |
| | | // Contract contract = new Contract( |