mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-07-25 23:27:07 +08:00
feat(JsSupplier): add phoneNumber field to supplier DTOs and entity for contact information
This commit is contained in:
@@ -4,6 +4,8 @@ import cn.lihongjie.coal.base.dto.OrgCommonDto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import org.hibernate.annotations.Comment;
|
||||
|
||||
@Data
|
||||
public class CreateJsSupplierDto extends OrgCommonDto {
|
||||
private String socialCreditCode;
|
||||
@@ -15,4 +17,6 @@ public class CreateJsSupplierDto extends OrgCommonDto {
|
||||
private String bankBranchAddress;
|
||||
|
||||
private String bankCardNumber;
|
||||
@Comment("手机号")
|
||||
private String phoneNumber;
|
||||
}
|
||||
|
||||
@@ -6,6 +6,8 @@ import cn.lihongjie.coal.pojoProcessor.DictTranslate;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import org.hibernate.annotations.Comment;
|
||||
|
||||
@Data
|
||||
public class JsSupplierDto extends OrgCommonDto {
|
||||
private String archiveStatus;
|
||||
@@ -25,4 +27,7 @@ public class JsSupplierDto extends OrgCommonDto {
|
||||
private String bankBranchAddress;
|
||||
|
||||
private String bankCardNumber;
|
||||
|
||||
@Comment("手机号")
|
||||
private String phoneNumber;
|
||||
}
|
||||
|
||||
@@ -15,4 +15,6 @@ public class UpdateJsSupplierDto extends OrgCommonDto {
|
||||
private String bankBranchAddress;
|
||||
|
||||
private String bankCardNumber;
|
||||
|
||||
private String phoneNumber;
|
||||
}
|
||||
|
||||
@@ -36,4 +36,7 @@ public class JsSupplierEntity extends OrgCommonEntity {
|
||||
|
||||
@Comment("卡号")
|
||||
private String bankCardNumber;
|
||||
|
||||
@Comment("手机号")
|
||||
private String phoneNumber;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user