From ecef3df4890be54c1da2a8a4fc1c8c1f50f1c263 Mon Sep 17 00:00:00 2001 From: zhubaomin <zhubaomin> Date: 星期一, 07 四月 2025 15:41:47 +0800 Subject: [PATCH] 式样代码管理 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voSt/VoStClientAmountYearRecords.java | 201 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 201 insertions(+), 0 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voSt/VoStClientAmountYearRecords.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voSt/VoStClientAmountYearRecords.java new file mode 100644 index 0000000..53a48da --- /dev/null +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/voSt/VoStClientAmountYearRecords.java @@ -0,0 +1,201 @@ +package com.dy.pipIrrGlobal.voSt; + +import com.alibaba.fastjson2.annotation.JSONField; +import com.alibaba.fastjson2.writer.ObjectWriterImplToString; +import com.fasterxml.jackson.annotation.JsonPropertyOrder; +import lombok.Data; + +/** + * @Author: liurunyu + * @Date: 2025/1/4 10:15 + * @Description + */ +@Data +@JsonPropertyOrder({ "id", "clientId", "clientNum", "clientName", "clientAddress" + ,"amount1" , "money1" , "times1" + ,"amount2" , "money2" , "times2" + ,"amount3" , "money3" , "times3" + ,"amount4" , "money4" , "times4" + ,"amount5" , "money5" , "times5" + ,"amount6" , "money6" , "times6" + ,"amount7" , "money7" , "times7" + ,"amount8" , "money8" , "times8" + ,"amount9" , "money9" , "times9" + ,"amount10" , "money10" , "times10" +}) +public class VoStClientAmountYearRecords { + + public static final long serialVersionUID = 202501041106001L; + + /** + * 澶栭敭锛屾寚鍚戝啘鎴� + */ + @JSONField(serializeUsing= ObjectWriterImplToString.class) + public Long clientId; + + /** + * 鍐滄埛缂栧勾 + */ + public String clientNum ; + + /** + * 鍐滄埛鍚嶇О + */ + public String clientName ; + + /** + * 鍐滄埛鍦板潃 + */ + public String clientAddress ; + + /** + * 1骞寸敤姘撮噺缁熻 + */ + public Double amount1; + + /** + * 1骞磋姳璐归噾棰� + */ + public Double money1; + + /** + * 1骞寸敤姘存鏁� + */ + public Integer times1; + + /** + * 2骞寸敤姘撮噺缁熻 + */ + public Double amount2; + + /** + * 2骞磋姳璐归噾棰� + */ + public Double money2; + + /** + * 2骞寸敤姘存鏁� + */ + public Integer times2; + + /** + * 3骞寸敤姘撮噺缁熻 + */ + public Double amount3; + + /** + * 3骞磋姳璐归噾棰� + */ + public Double money3; + + /** + * 3骞寸敤姘存鏁� + */ + public Integer times3; + + /** + * 4骞寸敤姘撮噺缁熻 + */ + public Double amount4; + + /** + * 4骞磋姳璐归噾棰� + */ + public Double money4; + + /** + * 4骞寸敤姘存鏁� + */ + public Integer times4; + + /** + * 5骞寸敤姘撮噺缁熻 + */ + public Double amount5; + + /** + * 5骞磋姳璐归噾棰� + */ + public Double money5; + + /** + * 5骞寸敤姘存鏁� + */ + public Integer times5; + + /** + * 6骞寸敤姘撮噺缁熻 + */ + public Double amount6; + + /** + * 6骞磋姳璐归噾棰� + */ + public Double money6; + + /** + * 6骞寸敤姘存鏁� + */ + public Integer times6; + + /** + * 7骞寸敤姘撮噺缁熻 + */ + public Double amount7; + + /** + * 7骞磋姳璐归噾棰� + */ + public Double money7; + + /** + * 7骞寸敤姘存鏁� + */ + public Integer times7; + + /** + * 8骞寸敤姘撮噺缁熻 + */ + public Double amount8; + + /** + * 8骞磋姳璐归噾棰� + */ + public Double money8; + + /** + * 8骞寸敤姘存鏁� + */ + public Integer times8; + + /** + * 9骞寸敤姘撮噺缁熻 + */ + public Double amount9; + + /** + * 9骞磋姳璐归噾棰� + */ + public Double money9; + + /** + * 9骞寸敤姘存鏁� + */ + public Integer times9; + + /** + * 10骞寸敤姘撮噺缁熻 + */ + public Double amount10; + + /** + * 10骞磋姳璐归噾棰� + */ + public Double money10; + + /** + * 10骞寸敤姘存鏁� + */ + public Integer times10; + +} -- Gitblit v1.8.0