You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.5 KiB
Java
77 lines
1.5 KiB
Java
package com.glxp.api.entity.thrsys;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 第三方往来单位类型
|
|
*/
|
|
@Data
|
|
@TableName(value = "thr_manufacturer")
|
|
public class ThrManufacturerEntity implements Serializable {
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
private Long id;
|
|
|
|
@TableField("unitId")
|
|
private String unitId;
|
|
|
|
@TableField("spell")
|
|
private String spell;
|
|
|
|
@TableField("addr")
|
|
private String addr;
|
|
|
|
@TableField("creditNo")
|
|
private String creditNo;
|
|
|
|
@TableField("contact")
|
|
private String contact;
|
|
|
|
@TableField("mobile")
|
|
private String mobile;
|
|
|
|
@TableField("thirdSysFk")
|
|
private String thirdSysFk;
|
|
|
|
@TableField("name")
|
|
private String name;
|
|
|
|
/**
|
|
* 创建人
|
|
*/
|
|
@TableField("createUser")
|
|
private String createUser;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
@TableField("createTime")
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
@TableField("updateUser")
|
|
private String updateUser;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
@TableField("updateTime")
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
@TableField("remark")
|
|
private String remark;
|
|
@TableField(exist = false)
|
|
private Boolean checked;
|
|
}
|