mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-01-25 07:46:40 +08:00
完善设备厂家信息
This commit is contained in:
@@ -5,4 +5,11 @@ import cn.lihongjie.coal.base.dto.OrgCommonDto;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CreateEmDeviceSupplierDto extends OrgCommonDto {}
|
||||
public class CreateEmDeviceSupplierDto extends OrgCommonDto {
|
||||
|
||||
private String contact;
|
||||
|
||||
private String contactPhone;
|
||||
|
||||
private String address;
|
||||
}
|
||||
|
||||
@@ -6,6 +6,12 @@ import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class EmDeviceSupplierDto extends OrgCommonDto {
|
||||
|
||||
private String contact;
|
||||
|
||||
private String contactPhone;
|
||||
|
||||
private String address;
|
||||
private String archiveStatus;
|
||||
|
||||
private String archiveStatusName;
|
||||
|
||||
@@ -13,6 +13,11 @@ import org.hibernate.annotations.Formula;
|
||||
@Data
|
||||
@Entity
|
||||
public class EmDeviceSupplierEntity extends OrgCommonEntity {
|
||||
private String contact;
|
||||
|
||||
private String contactPhone;
|
||||
|
||||
private String address;
|
||||
@Comment("归档状态")
|
||||
@ColumnDefault("'0'")
|
||||
private String archiveStatus = "0";
|
||||
|
||||
Reference in New Issue
Block a user