信用明细查询
This commit is contained in:
+48
@@ -0,0 +1,48 @@
|
||||
package com.mhd.user.domain.userAggregate.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.mhd.common.core.web.domain.BaseVOEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author: brb
|
||||
* @description: 协议详情表
|
||||
* @create: 2026-06-16 18:25
|
||||
*/
|
||||
@Data
|
||||
@TableName("agreement_details")
|
||||
public class AgreementDetails extends BaseVOEntity {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId(type = IdType.AUTO)
|
||||
@ApiModelProperty("主键ID")
|
||||
private Long id;
|
||||
|
||||
@ApiModelProperty("货主表ID")
|
||||
private Long shipperId;
|
||||
|
||||
@ApiModelProperty("协议组织编码")
|
||||
private String orgcode;
|
||||
|
||||
@ApiModelProperty("客户编码")
|
||||
private String code;
|
||||
|
||||
@ApiModelProperty("协议天数")
|
||||
private String pday;
|
||||
|
||||
@ApiModelProperty("协议天数名称")
|
||||
private String pname;
|
||||
|
||||
@ApiModelProperty("协议类型名称")
|
||||
private String ptypename;
|
||||
|
||||
@ApiModelProperty("财务系统协议编码")
|
||||
private String pcode;
|
||||
|
||||
@ApiModelProperty("协议类型")
|
||||
private String ptype;
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
package com.mhd.user.domain.userAggregate.repository.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.mhd.user.domain.userAggregate.entity.AgreementDetails;
|
||||
|
||||
public interface AgreementDetailsMapper extends BaseMapper<AgreementDetails> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user