供应商

This commit is contained in:
2025-12-18 17:04:44 +08:00
parent aff9056f60
commit 99f3508cbb
9 changed files with 73 additions and 124 deletions

View File

@ -1,14 +1,10 @@
package com.xjrsoft.module.supplier.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.xjrsoft.common.annotation.Trans;
import com.xjrsoft.common.enums.TransType;
import java.time.LocalTime;
import java.time.LocalDateTime;
import java.math.BigDecimal;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @title: 分页列表出参
@ -24,6 +20,12 @@ public class LngSupplierPageVo {
*/
@ApiModelProperty("主键")
private String id;
/**
* 供应商编码名称(不能与名称、简称重复)
*/
@ApiModelProperty("供应商编码")
private String suCode;
/**
* 供应商名称(不能与名称、简称重复)
*/
@ -38,31 +40,40 @@ public class LngSupplierPageVo {
* 国际/国内(I-国际D-国内)
*/
@ApiModelProperty("国际/国内(I-国际D-国内)")
@Trans(type = TransType.DIC, id = "1990667691045732354")
private String dI;
/**
* 企业性质(国有企业/非国有企业)
*/
@ApiModelProperty("企业性质(国有企业/非国有企业)")
@Trans(type = TransType.DIC, id = "1990667133987635201")
private String natureCode;
/**
* 供应商分类(一类/二类)
*/
@ApiModelProperty("供应商分类(一类/二类)")
@Trans(type = TransType.DIC, id = "1990668094164484097")
private String classCode;
/**
* 供应商类别(资源方/贸易商/托运商/接收站/多领域)
*/
@ApiModelProperty("供应商类别(资源方/贸易商/托运商/接收站/多领域)")
@Trans(type = TransType.DIC, id = "1996842517347475457")
private String typeCode;
/**
* 有效标志(Y-有效N-无效)
*/
@ApiModelProperty("有效标志(Y-有效N-无效)")
@Trans(type = TransType.DIC, id = "1978057078528327681")
private String valid;
/**
* 状态(未提交/审批中/已审批/已驳回)
*/
@ApiModelProperty("状态(未提交/审批中/已审批/已驳回)")
@Trans(type = TransType.DIC, id = "1990669393069129729", transToFieldName = "approName")
private String approCode;
@ApiModelProperty("状态(未提交/审批中/已审批/已驳回)")
private String approName;
}